From 2df5bc584899f427495cc20927170de2a2c84b32 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Fri, 12 Jun 2026 18:10:16 +0200 Subject: Setup luna --- modules/features/bluetooth.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 modules/features/bluetooth.nix (limited to 'modules/features/bluetooth.nix') diff --git a/modules/features/bluetooth.nix b/modules/features/bluetooth.nix new file mode 100644 index 0000000..61f6831 --- /dev/null +++ b/modules/features/bluetooth.nix @@ -0,0 +1,20 @@ +{ self, inputs, ... }: { + + flake.nixosModules.bluetooth = { pkgs, lib, ... }: { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + Experimental = true; + FastConnectable = false; + }; + + Policy = { + AutoEnable = true; + }; + }; + }; + }; + +} \ No newline at end of file -- cgit v1.2.3