blob: 75c5aef9e08dfc5c2d3de084909ac20ad8d6e832 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
config,
pkg,
...
}: {
services.openssh = {
enable = true;
passwordAuthentication = false;
hostKeys = [
{
path = "/srv/sshd/ssh_host_ed25519_key";
rounds = 1000;
type = "ed25519";
}
];
};
}
|