infrastructure/nixos/common/users/laura.nix

13 lines
369 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 = [ ];
};
}