added laura

This commit is contained in:
Vivian 2022-10-03 21:25:57 +02:00
parent 6a97495d8c
commit 454a5651e6
4 changed files with 40 additions and 23 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
users.extraUsers.laura = {
isNormalUser = true;
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBIlFUUXbwOkhNUjoA6zueTdRuaylgpgFqSe/xWGK9zb laura@zmeura"
];
extraGroups = [ ];
};
}