summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-09-18 00:05:47 +0200
committerRobin Gloster <mail@glob.in>2019-09-18 00:06:11 +0200
commit9566ec034b9515ba2487d3625664109b59ca46f1 (patch)
treed54fc9da7d905f2e75b6bcbbac88cbc5abc03ced
parentb32fd0c093adc7d1f22ab6e1813d91b6607d2b7b (diff)
downloadnixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.tar
nixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.tar.gz
nixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.tar.bz2
nixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.tar.lz
nixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.tar.xz
nixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.tar.zst
nixpkgs-9566ec034b9515ba2487d3625664109b59ca46f1.zip
hardware.brightnessctl: add brightnessctl to env
-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 341e4b791c2..2d54398d10d 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 ];
   };
 
 }