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