summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2020-11-12 05:21:46 +0300
committergnidorah <gnidorah@users.noreply.github.com>2020-11-12 05:22:18 +0300
commitec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e (patch)
tree1d167089e5c0a7f9a415b94cbb146c81d5a057ea /nixos/modules/hardware
parentb839d4a8557adc80e522f674529e586ab2a88d23 (diff)
downloadnixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.tar
nixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.tar.gz
nixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.tar.bz2
nixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.tar.lz
nixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.tar.xz
nixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.tar.zst
nixpkgs-ec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e.zip
nixos/acpilight: add to packages
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/acpilight.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/hardware/acpilight.nix b/nixos/modules/hardware/acpilight.nix
index 34e8a222096..2de448a265c 100644
--- a/nixos/modules/hardware/acpilight.nix
+++ b/nixos/modules/hardware/acpilight.nix
@@ -19,6 +19,7 @@ in
   };
 
   config = mkIf cfg.enable {
+    environment.systemPackages = with pkgs; [ acpilight ];
     services.udev.packages = with pkgs; [ acpilight ];
   };
 }