summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-10-08 12:39:39 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-10-08 12:39:39 -0600
commitbf03fa225619572ba19f977347e7c116403cb032 (patch)
tree5c95c650b748d98bf84c15dbf7d289b3fbbcf042 /system
parenta68cc3a22173af6c8d95bf5b1b22082c8bd70495 (diff)
downloadcfg.nix-bf03fa225619572ba19f977347e7c116403cb032.tar.gz
cfg.nix-bf03fa225619572ba19f977347e7c116403cb032.tar.xz
system: add bluetooth configuration
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'system')
-rw-r--r--system/bluetooth.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/system/bluetooth.nix b/system/bluetooth.nix
new file mode 100644
index 0000000..30faf1b
--- /dev/null
+++ b/system/bluetooth.nix
@@ -0,0 +1,8 @@
+{ config, pkgs, ... }:
+{
+ hardware.bluetooth = {
+ enable = true;
+ package = pkgs.bluezFull;
+ powerOnBoot = false;
+ };
+}