diff options
| -rw-r--r-- | hosts/laptop/configuration.nix | 2 | ||||
| -rw-r--r-- | modules/common.nix | 2 |
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; |
