summaryrefslogtreecommitdiff
path: root/modules/openssh.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2024-08-08 10:45:09 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2024-08-08 10:45:09 +0200
commit63adb41f1a060c21a68143eb9e86c2790ef66f36 (patch)
tree3902b85e7659fd396ded1d2e42ea318153d08a13 /modules/openssh.nix
parent73b08cbd76d4471c9a6fddd05265d7d7fc4c45ff (diff)
downloadnixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar
nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar.gz
nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar.bz2
nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar.xz
nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.zip
...
Diffstat (limited to 'modules/openssh.nix')
-rw-r--r--modules/openssh.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/openssh.nix b/modules/openssh.nix
index 78749869..8bdc3df6 100644
--- a/modules/openssh.nix
+++ b/modules/openssh.nix
@@ -30,6 +30,7 @@ with lib;
30 "rsa-sha2-512" 30 "rsa-sha2-512"
31 "rsa-sha2-512-cert-v01@openssh.com" 31 "rsa-sha2-512-cert-v01@openssh.com"
32 ]; 32 ];
33 description = "HostKeyAlgorithms";
33 }; 34 };
34 settings.CASignatureAlgorithms = mkOption { 35 settings.CASignatureAlgorithms = mkOption {
35 type = types.str; 36 type = types.str;
@@ -43,6 +44,7 @@ with lib;
43 "rsa-sha2-512" 44 "rsa-sha2-512"
44 "rsa-sha2-256" 45 "rsa-sha2-256"
45 ]; 46 ];
47 description = "CASignatureAlgorithms";
46 }; 48 };
47 settings.PubkeyAcceptedAlgorithms = mkOption { 49 settings.PubkeyAcceptedAlgorithms = mkOption {
48 type = types.str; 50 type = types.str;
@@ -69,6 +71,7 @@ with lib;
69 "rsa-sha2-512" 71 "rsa-sha2-512"
70 "rsa-sha2-512-cert-v01@openssh.com" 72 "rsa-sha2-512-cert-v01@openssh.com"
71 ]; 73 ];
74 description = "PubkeyAcceptedAlgorithms";
72 }; 75 };
73 }; 76 };
74 }; 77 };