You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
217 B
Nix
12 lines
217 B
Nix
8 years ago
|
{
|
||
7 years ago
|
services.openssh = {
|
||
|
enable = true;
|
||
|
passwordAuthentication = false;
|
||
|
challengeResponseAuthentication = false;
|
||
|
};
|
||
|
|
||
8 years ago
|
users.users.root.openssh.authorizedKeys.keys = [
|
||
7 years ago
|
(builtins.readFile ../joepie91.pub)
|
||
8 years ago
|
];
|
||
|
}
|