feat: fixed hyprland

This commit is contained in:
Nick 2025-02-01 23:30:06 -06:00
parent a4afc18937
commit 7cf28c791c
11 changed files with 32 additions and 18 deletions

23
nixos/modules/bluetooth.nix Executable file
View file

@ -0,0 +1,23 @@
{
pkgs,
...
}:
{
hardware = {
bluetooth = {
enable = true;
package = pkgs.bluez;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
};
};
disabledPlugins = [
"sap"
];
};
};
services.blueman.enable = true;
}