diff --git a/bluetooth.nix b/bluetooth.nix new file mode 100644 index 0000000..6c1ec63 --- /dev/null +++ b/bluetooth.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + # Enable Bluetooth + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = false; +} diff --git a/flake.nix b/flake.nix index 238b31f..d7244a7 100644 --- a/flake.nix +++ b/flake.nix @@ -16,6 +16,7 @@ system = "x86_64-linux"; modules = [ ./audio.nix + ./bluetooth.nix ./boot.nix ./display-manager.nix ./env-vars.nix