summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/bluetooth.nix16
-rw-r--r--modules/default.nix1
2 files changed, 17 insertions, 0 deletions
diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix
new file mode 100644
index 0000000..cf7cee5
--- /dev/null
+++ b/modules/bluetooth.nix
@@ -0,0 +1,16 @@
+{ lib, pkgs, config, ... }:
+
+let cfg = config.this.bluetooth;
+in
+{
+ options.this.bluetooth = {
+ enable = lib.mkEnableOption "bluetooth";
+ };
+
+ config = lib.mkIf cfg.enable {
+ hardware.bluetooth.enable = true;
+ environment.systemPackages = with pkgs; [
+ bluetuith
+ ];
+ };
+}
diff --git a/modules/default.nix b/modules/default.nix
index fe4bac6..034a4e3 100644
--- a/modules/default.nix
+++ b/modules/default.nix
@@ -11,6 +11,7 @@
./sets.nix
./syslog.nix
./hosts.nix
+ ./bluetooth.nix
./overlays
];