22 lines
443 B
Nix
22 lines
443 B
Nix
|
_: {
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
KbdInteractiveAuthentication = false;
|
||
|
PasswordAuthentication = false;
|
||
|
PermitRootLogin = "no";
|
||
|
};
|
||
|
hostKeys = [
|
||
|
{
|
||
|
path = "/persist/secrets/ssh/keys/ssh_host_ed25519_key";
|
||
|
type = "ed25519";
|
||
|
}
|
||
|
{
|
||
|
path = "/persist/secrets/ssh/keys/ssh_host_rsa_key";
|
||
|
type = "rsa";
|
||
|
bits = "4096";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|