diff --git a/system/core/users.nix b/system/core/users.nix index 24bb86b..7da1ca7 100644 --- a/system/core/users.nix +++ b/system/core/users.nix @@ -1,9 +1,10 @@ -{...}: { +{ users.users.nezia = { isNormalUser = true; description = "Anthony Rodriguez"; extraGroups = [ "networkmanager" + "video" "wheel" ]; }; diff --git a/system/default.nix b/system/default.nix index 6ff66c8..a236d19 100644 --- a/system/default.nix +++ b/system/default.nix @@ -21,6 +21,7 @@ let ++ [ ./hardware/fprintd.nix ./services/power.nix + ./services/brightness.nix ./services/keyd.nix ]; in { diff --git a/system/services/brightness.nix b/system/services/brightness.nix new file mode 100644 index 0000000..4cbef77 --- /dev/null +++ b/system/services/brightness.nix @@ -0,0 +1,3 @@ +{ + hardware.brillo.enable = true; +}