summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Ballou <kb@devnulllabs.io>2021-06-25 14:39:49 -0600
committerKenny Ballou <kb@devnulllabs.io>2021-06-25 14:39:49 -0600
commitf1912f7063f3eb303c5af1dd38dc0ad7eed9a7b1 (patch)
treebba39c7d1b7847fdc11b7cf23b20d042e9dd1821
parent0b1eff4b0b1e618db042cc28aaee24fe7f831cee (diff)
downloadcfg.nix-f1912f7063f3eb303c5af1dd38dc0ad7eed9a7b1.tar.gz
cfg.nix-f1912f7063f3eb303c5af1dd38dc0ad7eed9a7b1.tar.xz
system/bluetooth: add configuration options
- add hsphfpd - enable powerOnBoot - set discovery timeout Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
-rw-r--r--system/bluetooth.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/system/bluetooth.nix b/system/bluetooth.nix
index 30faf1b..b1d53ae 100644
--- a/system/bluetooth.nix
+++ b/system/bluetooth.nix
@@ -3,6 +3,12 @@
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
- powerOnBoot = false;
+ powerOnBoot = true;
+ hsphfpd.enable = true;
+ settings = {
+ General = {
+ DiscoverableTimeout = 60;
+ };
+ };
};
}