sshd: Fix missing cfg.fqdn regression

This commit is contained in:
Qubasa
2025-03-21 17:45:25 +01:00
parent 3965f7b59f
commit 6917021996

View File

@@ -55,7 +55,7 @@ in
hostNames = [
"localhost"
config.networking.hostName
] ++ (lib.optional (config.networking.domain != null) cfg.fqdn);
] ++ (lib.optional (config.networking.domain != null) config.networking.fqdn);
publicKey = config.clan.core.vars.generators.openssh.files."ssh.id_ed25519.pub".value;
};