services/brightness: add brillo for backlight

This commit is contained in:
Anthony Rodriguez 2024-10-03 13:54:52 +02:00
parent fcd23e73c3
commit fcbad25a2a
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
3 changed files with 6 additions and 1 deletions

View file

@ -1,9 +1,10 @@
{...}: { {
users.users.nezia = { users.users.nezia = {
isNormalUser = true; isNormalUser = true;
description = "Anthony Rodriguez"; description = "Anthony Rodriguez";
extraGroups = [ extraGroups = [
"networkmanager" "networkmanager"
"video"
"wheel" "wheel"
]; ];
}; };

View file

@ -21,6 +21,7 @@ let
++ [ ++ [
./hardware/fprintd.nix ./hardware/fprintd.nix
./services/power.nix ./services/power.nix
./services/brightness.nix
./services/keyd.nix ./services/keyd.nix
]; ];
in { in {

View file

@ -0,0 +1,3 @@
{
hardware.brillo.enable = true;
}