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

13
common/users/jonathan.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
users.extraUsers.jonathan = {
isNormalUser = true;
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOAXOTU6E06zjK/zkzlSPhTG35PoNRYgTCStEPUYyjeE jonathan@kili"
];
extraGroups = [ ];
};
}