From 9566ec034b9515ba2487d3625664109b59ca46f1 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 18 Sep 2019 00:05:47 +0200 Subject: [PATCH] hardware.brightnessctl: add brightnessctl to env --- nixos/modules/hardware/brightnessctl.nix | 1 + 1 file changed, 1 insertion(+) 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 ]; }; }