11 lines
171 B
Nix
11 lines
171 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
controlMaster = "auto";
|
|
controlPersist = "1h";
|
|
controlPath = "~/.ssh/sockets/%r@%n:%p";
|
|
};
|
|
}
|