summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/openssh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/system-profiles/openssh/default.nix b/system-profiles/openssh/default.nix
index a989733f..df272f04 100644
--- a/system-profiles/openssh/default.nix
+++ b/system-profiles/openssh/default.nix
@@ -131,7 +131,7 @@ in {
131 services.openssh = mkIf cfg.enable { 131 services.openssh = mkIf cfg.enable {
132 hostKeys = mkIf cfg.staticHostKeys (mkForce []); # done manually 132 hostKeys = mkIf cfg.staticHostKeys (mkForce []); # done manually
133 settings = { 133 settings = {
134 inherit Ciphers Macs KexAlgorithms HostKeyAlgorithms CASignatureAlgorithms PubKeyAcceptedAlgorithms; 134 inherit Ciphers Macs KexAlgorithms HostKeyAlgorithms CASignatureAlgorithms PubkeyAcceptedAlgorithms;
135 135
136 LogLevel = "VERBOSE"; 136 LogLevel = "VERBOSE";
137 RevokedKeys = "/etc/ssh/krl.bin"; 137 RevokedKeys = "/etc/ssh/krl.bin";
@@ -164,7 +164,7 @@ in {
164 macs = Macs; 164 macs = Macs;
165 kexAlgorithms = KexAlgorithms; 165 kexAlgorithms = KexAlgorithms;
166 hostKeyAlgorithms = HostKeyAlgorithms; 166 hostKeyAlgorithms = HostKeyAlgorithms;
167 pubkeyAcceptedKeyTypes = PubKeyAcceptedAlgorithms; 167 pubkeyAcceptedKeyTypes = PubkeyAcceptedAlgorithms;
168 168
169 extraConfig = '' 169 extraConfig = ''
170 Host * 170 Host *