Add alfhj.nix

This commit is contained in:
Alf Helge Jakobsen 2024-11-09 19:35:19 +01:00
parent 815f48c30d
commit 165ff56948
1 changed files with 13 additions and 0 deletions

13
users/alfhj.nix Normal file
View File

@ -0,0 +1,13 @@
{pkgs, ...}:
{
users.users.alfhj = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCAYE0U3sFizm/NSbKCs0jEhZ1mpAWPcijFevejiFL1 alfhj"
];
};
}