modularize config

This commit is contained in:
nicknase27
2026-07-26 12:26:38 +02:00
parent 5f85e3520b
commit a7ce2b4c71
7 changed files with 57 additions and 42 deletions
+7
View File
@@ -0,0 +1,7 @@
{pkgs, ...}: {
users.users.nick = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = ["wheel"];
};
}