aboutsummaryrefslogtreecommitdiff
path: root/modules/services/system/bluetooth.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/system/bluetooth.nix')
-rw-r--r--modules/services/system/bluetooth.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/services/system/bluetooth.nix b/modules/services/system/bluetooth.nix
index a0c3f86..a86b5b3 100644
--- a/modules/services/system/bluetooth.nix
+++ b/modules/services/system/bluetooth.nix
@@ -12,5 +12,8 @@ in
powerOnBoot = true;
};
- environment.systemPackages = [pkgs.blueman];
+ environment.systemPackages = [
+ (lib.mkIf cfg.blueman.enable pkgs.blueman)
+ (lib.mkIf cfg.bluetuith.enable pkgs.bluetuith)
+ ];
}