infrastructure/nixos/common/users/laura.nix

15 lines
371 B
Nix
Raw Normal View History

2022-10-03 21:25:57 +02:00
{ pkgs, ... }: {
users.extraUsers.laura = {
isNormalUser = true;
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBIlFUUXbwOkhNUjoA6zueTdRuaylgpgFqSe/xWGK9zb laura@zmeura"
2023-01-17 13:49:31 +01:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBVkk9/80askWhInQk03JMntF6SThAYkFZNm+lIGt4E7 laura@mura"
2022-10-03 21:25:57 +02:00
];
extraGroups = [ ];
};
2023-05-03 16:52:43 +02:00
}
2023-05-04 09:26:36 +02:00