diff options
| author | polwex <polwex@sortug.com> | 2025-12-03 09:33:38 +0700 |
|---|---|---|
| committer | polwex <polwex@sortug.com> | 2025-12-03 09:33:38 +0700 |
| commit | 90ef9484c24e49123ef7afc692e73e0917816e2b (patch) | |
| tree | 9a35f2a69d170f56adcefca127557798f1dbcca3 /hosts/local/gui.nix | |
| parent | 6ccf2c05c14ded340a168d8a966e2c2a0d9cd3e8 (diff) | |
m
Diffstat (limited to 'hosts/local/gui.nix')
| -rw-r--r-- | hosts/local/gui.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/local/gui.nix b/hosts/local/gui.nix index 9785855..1653bc5 100644 --- a/hosts/local/gui.nix +++ b/hosts/local/gui.nix @@ -124,4 +124,20 @@ in { ] ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts); }; + + ## Bluetooth + hardware.enableAllFirmware = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = {Experimental = true;}; + Policy = { + AutoEnable = true; + }; + }; + disabledPlugins = ["sap"]; + package = pkgs.bluez; + }; + services.blueman.enable = true; } |
