diff --git a/users/alfhj.nix b/users/alfhj.nix new file mode 100644 index 0000000..c25c6a8 --- /dev/null +++ b/users/alfhj.nix @@ -0,0 +1,13 @@ +{pkgs, ...}: + +{ + users.users.alfhj = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + shell = pkgs.zsh; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCAYE0U3sFizm/NSbKCs0jEhZ1mpAWPcijFevejiFL1 alfhj" + ]; + }; +} +