[NixOS] Add andy user

This commit is contained in:
2023-11-16 01:48:47 -07:00
parent 7b1934427e
commit 9d06f8ebc5
2 changed files with 8 additions and 0 deletions

View File

@@ -62,6 +62,11 @@ in
name = "mike";
openssh.authorizedKeys.keys = kanivanKeys ++ mikeKeys;
};
andy = userDefaults // {
inherit extraGroups;
name = "andy";
openssh.authorizedKeys.keys = kanivanKeys ++ andyKeys;
};
};
nix.settings.trusted-users = realUsers;