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

11 lines
157 B
Nix
Raw Normal View History

{ ... }:
{
users.users.criese-nethinks = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
2023-12-07 20:18:21 +01:00
(builtins.readFile ./ssh.pub)
];
};
}