20 lines
369 B
Nix
20 lines
369 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";
|
|
};
|
|
};
|
|
}
|