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