mirror of
https://github.com/blahai/nyx.git
synced 2025-06-08 09:33:01 -04:00
Secrets: fix
This commit is contained in:
parent
861a864f93
commit
35e372a025
5 changed files with 23 additions and 8 deletions
|
@ -14,7 +14,7 @@ in {
|
|||
# to decrypt the secrets
|
||||
identityPaths = [
|
||||
"/etc/ssh/ssh_host_ed25519_key"
|
||||
"${sshDir}/id_ed25519"
|
||||
#"${sshDir}/id_ed25519"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,5 +10,18 @@
|
|||
};
|
||||
openFirewall = true;
|
||||
ports = [22];
|
||||
|
||||
hostKeys = [
|
||||
{
|
||||
bits = 4096;
|
||||
path = "/etc/ssh/ssh_host_rsa_key";
|
||||
type = "rsa";
|
||||
}
|
||||
{
|
||||
bits = 4096;
|
||||
path = "/etc/ssh/ssh_host_ed25519_key";
|
||||
type = "ed25519";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue