1
0
nixfiles/users/criese-nethinks/default.nix

11 lines
157 B
Nix

{ ... }:
{
users.users.criese-nethinks = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
(builtins.readFile ./ssh.pub)
];
};
}