Modularize machines>roles

This commit is contained in:
2024-09-07 16:12:08 -07:00
parent 5571ac8657
commit c61ee69500
11 changed files with 186 additions and 294 deletions

8
roles/users/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ extraGroups ? [], ... }:
{
users.users.johno = {
isNormalUser = true;
description = "John Ogle";
extraGroups = [ "wheel" "networkmanager" "audio" ] ++ extraGroups;
};
}