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 openssl
topgrade topgrade
htop htop
mosh
btop btop
python314 python314
wget2 wget2
+8 -1
View File
@@ -5,8 +5,15 @@
# startAgent = true; # startAgent = true;
# agentPKCS11Whitelist = "${config.security.tpm2.pkcs11.package}/lib/*,/run/current-system/sw/lib/*"; # agentPKCS11Whitelist = "${config.security.tpm2.pkcs11.package}/lib/*,/run/current-system/sw/lib/*";
#}; #};
programs.mosh = {
enable = true;
openFirewall = true;
withUtempter = true;
};
services.openssh = { services.openssh = {
enable = true; enable = true;
settings.PasswordAuthentication = true; settings = {
GatewayPorts = true;
};
}; };
} }