Compare commits

...
2 Commits
Author SHA1 Message Date
k3t 7c0ab9e7a4 update openssh.nix 2026-07-09 07:43:02 -06:00
k3t d617fb0ac8 update openssh.nix 2026-07-09 07:42:33 -06:00
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 = "yes";
};
};
}