[NixOS] Add will user

This commit is contained in:
2023-11-17 13:55:22 -07:00
parent 1661e9fe08
commit d376da4ca4
2 changed files with 7 additions and 0 deletions

View File

@@ -46,6 +46,12 @@ in
shell = pkgs.zsh;
openssh.authorizedKeys.keys = kanivanKeys ++ deanKeys;
};
will = userDefaults // {
extraGroups = extraGroupsWithWheel;
name = "will";
shell = pkgs.zsh;
openssh.authorizedKeys.keys = kanivanKeys ++ willKeys;
};
alex = userDefaults // {
extraGroups = extraGroupsWithWheel;
name = "alex";