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