summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2023-03-20 12:06:07 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2023-03-20 12:06:07 +0100
commit7b36035824d7d19b08b99feca449599ceffa8905 (patch)
tree3aaf848b37bf8d2513bbaef6a00da8d4f6d8fdff
parent247ed8fb020b0fc8680d7b811a26a690d5bf8e43 (diff)
downloadnixos-7b36035824d7d19b08b99feca449599ceffa8905.tar
nixos-7b36035824d7d19b08b99feca449599ceffa8905.tar.gz
nixos-7b36035824d7d19b08b99feca449599ceffa8905.tar.bz2
nixos-7b36035824d7d19b08b99feca449599ceffa8905.tar.xz
nixos-7b36035824d7d19b08b99feca449599ceffa8905.zip
...
-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 *