diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-07-08 17:03:20 +0000 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-07-08 17:14:14 +0000 |
| commit | 82ec91b4d2c253c6ccb783f960a2788f230d6ad1 (patch) | |
| tree | 94dad925340787e5a045d9bb0d094f71dedce036 /modules/services/system/bluetooth.nix | |
| parent | cfe198ee85f3c5ee41f4221f49b73dd492b42fdc (diff) | |
start avoiding lib.enum; start using hjem generators
Diffstat (limited to 'modules/services/system/bluetooth.nix')
| -rw-r--r-- | modules/services/system/bluetooth.nix | 5 |
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) + ]; } |
