1
0
Fork 0

Added user jonmro

This commit is contained in:
Jon Martinus Rodtang 2023-11-24 18:46:14 +01:00
parent 42c1803c9b
commit c807d6ec2b
1 changed files with 12 additions and 0 deletions

12
users/jonmro.nix Normal file
View File

@ -0,0 +1,12 @@
{pkgs, ...}:
{
users.users.jonmro = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEm5PfYmfl/0fnAP/3coVlvTw3/TYNLT6r/NwJHZbLAK jonrodtang@gmail.com"
];
};
}