This commit is contained in:
Vivian 2024-01-03 11:36:37 +01:00
parent 3d63c94742
commit e913bd96d5
12 changed files with 409 additions and 1 deletions

14
common/users/laura.nix Normal file
View file

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