This commit is contained in:
kenji
2025-12-22 09:32:38 -06:00
parent ec424cd6d8
commit 420d4f173c
11 changed files with 168 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
pkgs,
myConfig,
...
}: {
users = {
users = {
${myConfig.nixos.username} = {
isNormalUser = true;
extraGroups = ["wheel" "networkmanager" "input" "video"];
useDefaultShell = true;
};
};
};
}