summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-29 10:22:47 -0600
committerChristian <[email protected]>2026-01-29 10:22:47 -0600
commit9bcc5ed31a94f5ab66fb3400dc39560ee9d29e72 (patch)
tree2b19f1258ba9b8883cbe030e4ef59f63ed3dba58
parent530f7501c4acebbb9927b5c1b0f5e0fc11ecd36f (diff)
Screen brightness utility
-rw-r--r--hosts/laptop/configuration.nix2
-rw-r--r--modules/common.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix
index 06deeea..d28b4ef 100644
--- a/hosts/laptop/configuration.nix
+++ b/hosts/laptop/configuration.nix
@@ -25,5 +25,7 @@
"8.8.8.8"
];
+ programs.light.enable = true;
+
system.stateVersion = "25.11";
}
diff --git a/modules/common.nix b/modules/common.nix
index 1f38adc..1c1e066 100644
--- a/modules/common.nix
+++ b/modules/common.nix
@@ -28,7 +28,7 @@
# User
users.users.christian = {
isNormalUser = true;
- extraGroups = [ "wheel" ];
+ extraGroups = [ "wheel" "video" ];
};
home-manager.users.christian = import ./home/christian.nix;