diff options
| author | Dominik Kaiser | 2026-06-12 18:10:16 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2026-06-12 18:10:16 +0200 |
| commit | 2df5bc584899f427495cc20927170de2a2c84b32 (patch) | |
| tree | d1a87bcd3c17d605e3f25e4bb8d7a6ec060c73ba /modules/features/bluetooth.nix | |
| download | nixos-2df5bc584899f427495cc20927170de2a2c84b32.tar.gz nixos-2df5bc584899f427495cc20927170de2a2c84b32.zip | |
Setup luna
Diffstat (limited to 'modules/features/bluetooth.nix')
| -rw-r--r-- | modules/features/bluetooth.nix | 20 |
1 files changed, 20 insertions, 0 deletions
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 |
