From e54fc963f68f6f6d60329a510aad205896a14a6a Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Wed, 18 Mar 2026 00:09:24 +0100 Subject: [PATCH] system-settings: Add bluetooth support --- modules/system-settings/bluetooth.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 modules/system-settings/bluetooth.nix diff --git a/modules/system-settings/bluetooth.nix b/modules/system-settings/bluetooth.nix new file mode 100644 index 0000000..258fad3 --- /dev/null +++ b/modules/system-settings/bluetooth.nix @@ -0,0 +1,8 @@ +{ + flake.modules.nixos.bluetooth = { + hardware.bluetooth = { + enable = true; + + }; + }; +}