update openssh.nix

This commit is contained in:
k3t
2026-07-09 07:42:33 -06:00
parent f91a7f409a
commit d617fb0ac8
2 changed files with 8 additions and 2 deletions
-1
View File
@@ -7,7 +7,6 @@
openssl
topgrade
htop
mosh
btop
python314
wget2
+8 -1
View File
@@ -5,8 +5,15 @@
# startAgent = true;
# agentPKCS11Whitelist = "${config.security.tpm2.pkcs11.package}/lib/*,/run/current-system/sw/lib/*";
#};
programs.mosh = {
enable = true;
openFirewall = true;
withUtempter = true;
};
services.openssh = {
enable = true;
settings.PasswordAuthentication = true;
settings = {
GatewayPorts = true;
};
};
}