about summary refs log tree commit diff
path: root/nixos/modules/hardware/brightnessctl.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/hardware/brightnessctl.nix')
-rw-r--r--nixos/modules/hardware/brightnessctl.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/hardware/brightnessctl.nix b/nixos/modules/hardware/brightnessctl.nix
index 341e4b791c23..2d54398d10df 100644
--- a/nixos/modules/hardware/brightnessctl.nix
+++ b/nixos/modules/hardware/brightnessctl.nix
@@ -25,6 +25,7 @@ in
 
   config = mkIf cfg.enable {
     services.udev.packages = with pkgs; [ brightnessctl ];
+    environment.systemPackages = with pkgs; [ brightnessctl ];
   };
 
 }