added richie group

This commit is contained in:
2024-09-28 12:17:04 -04:00
parent 5558f041e8
commit 0799e7b0b4

View File

@@ -8,6 +8,7 @@ in {
users.users.richie = { users.users.richie = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.zsh;
group = "richie";
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIPtuYhiJHRTYhNaDmTcJOqJASk7D8mIn6u3F1IN5AFJ bob" # cspell:disable-line "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIPtuYhiJHRTYhNaDmTcJOqJASk7D8mIn6u3F1IN5AFJ bob" # cspell:disable-line
]; ];
@@ -28,5 +29,9 @@ in {
]; ];
}; };
users.groups.richie = {
gid = 1000;
};
home-manager.users.richie = import ./systems/${config.networking.hostName}.nix; home-manager.users.richie = import ./systems/${config.networking.hostName}.nix;
} }