summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-11-12 07:02:39 +0100
committerGitHub <noreply@github.com>2020-11-12 07:02:39 +0100
commit2789f47b9742fb509a063a4e3cb177613913f2c2 (patch)
treef2d15aa8dd9d3b1853be5de34bfefb1794ab09c8 /nixos/modules
parent31051812bc4117d394966f5df240de531a747809 (diff)
parentec26da1fc6e54e60b71b4a2dd2e429a3f7b9183e (diff)
Merge pull request #103531 from gnidorah/acpilight
nixos/acpilight: add to packages
Diffstat (limited to 'nixos/modules')
-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 34e8a2220965..2de448a265c7 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 ];
};
}