Files
nixconf/modules/sys/rc/openssh.nix
T
2026-07-09 07:43:02 -06:00

20 lines
368 B
Nix

{config, ...}:
{
#programs.ssh = {
# 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 = {
GatewayPorts = "yes";
};
};
}