From 7cf8cbbedbd715c874635d63974c7793681b014c Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 29 Jun 2025 07:31:04 -0400 Subject: [PATCH] Enable bluetooth. --- nodes/hosts/common/configuration.nix | 1 + nodes/hosts/common/system/bluetooth.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 nodes/hosts/common/system/bluetooth.nix diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 181c44a..bc297cd 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -10,6 +10,7 @@ ./services/desktopmanager.nix ./services/displaymanager.nix ./services/sound.nix + ./system/bluetooth.nix ]; nixpkgs = { diff --git a/nodes/hosts/common/system/bluetooth.nix b/nodes/hosts/common/system/bluetooth.nix new file mode 100644 index 0000000..21c4578 --- /dev/null +++ b/nodes/hosts/common/system/bluetooth.nix @@ -0,0 +1,5 @@ +{ ... }: { + hardware.bluetooth.enable = true; # enables support for Bluetooth + hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot +} +