diff --git a/hosts/thor/bluetooth.nix b/hosts/thor/bluetooth.nix new file mode 100644 index 0000000..b3e0b25 --- /dev/null +++ b/hosts/thor/bluetooth.nix @@ -0,0 +1,21 @@ +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + Experimental = true; + }; + }; + }; + + services.blueman.enable = true; + +} diff --git a/hosts/thor/configuration.nix b/hosts/thor/configuration.nix index d50ec5f..42aea96 100644 --- a/hosts/thor/configuration.nix +++ b/hosts/thor/configuration.nix @@ -22,6 +22,7 @@ # ./users.nix ../common ./gui.nix + ./bluetooth.nix # Import your generated (nixos-generate-config) hardware configuration ./hardware-configuration.nix