diff --git a/nodes/hosts/nixwork/configuration.nix b/nodes/hosts/nixwork/configuration.nix index 4aed237..4ac5c87 100644 --- a/nodes/hosts/nixwork/configuration.nix +++ b/nodes/hosts/nixwork/configuration.nix @@ -9,6 +9,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix inputs.nixos-hardware.nixosModules.framework-16-7040-amd + ./programs/brightnessctl.nix ./programs/fwupd.nix ./programs/powertop.nix ./programs/sof-firmware.nix diff --git a/nodes/hosts/nixwork/programs/brightnessctl.nix b/nodes/hosts/nixwork/programs/brightnessctl.nix new file mode 100644 index 0000000..d1d4b14 --- /dev/null +++ b/nodes/hosts/nixwork/programs/brightnessctl.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + environment.systemPackages = [ + pkgs.brightnessctl + ]; +} +