feat(services): add host key generation

This commit is contained in:
2026-03-04 22:07:44 +01:00
parent 68ef654ef5
commit 8574e4d19a

View File

@@ -2,5 +2,14 @@
{
services = {
pcscd.enable = true;
openssh = {
enable = true;
hostKeys = [
{
path = "/etc/ssh/ssh_host_ed25519_key";
type = "ed25519";
}
];
};
};
}