nixos-config/features/monitor-brightness.nix
Sridhar Ratnakumar 488e911ed7 Reorg
2021-04-07 18:23:28 -04:00

8 lines
145 B
Nix

{ pkgs, ... }: {
# ddcutils requires i2c
boot.kernelModules = [ "i2c-dev" ];
environment.systemPackages = with pkgs; [
ddcutil
];
}