Add brightnessctl for framework screen.

This commit is contained in:
jay
2025-07-18 09:28:38 -04:00
parent 6e75d84e0a
commit 85e8feda05
2 changed files with 7 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.framework-16-7040-amd inputs.nixos-hardware.nixosModules.framework-16-7040-amd
./programs/brightnessctl.nix
./programs/fwupd.nix ./programs/fwupd.nix
./programs/powertop.nix ./programs/powertop.nix
./programs/sof-firmware.nix ./programs/sof-firmware.nix

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = [
pkgs.brightnessctl
];
}