diff options
Diffstat (limited to 'modules/system/bluetooth.nix')
| -rw-r--r-- | modules/system/bluetooth.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/system/bluetooth.nix b/modules/system/bluetooth.nix new file mode 100644 index 0000000..2935b7d --- /dev/null +++ b/modules/system/bluetooth.nix @@ -0,0 +1,17 @@ +{ + flake.modules.nixos.bluetooth = { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + Experimental = true; + FastConnectable = true; + }; + Policy = { + AutoEnable = true; + }; + }; + }; + }; +} |
