aboutsummaryrefslogtreecommitdiff
path: root/modules/system/bluetooth.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/bluetooth.nix')
-rw-r--r--modules/system/bluetooth.nix17
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;
+ };
+ };
+ };
+ };
+}