summaryrefslogtreecommitdiff
path: root/hosts/local/gui.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/local/gui.nix')
-rw-r--r--hosts/local/gui.nix16
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;
}