universe/users/profiles/ssh.nix

9 lines
159 B
Nix

{ ... }: {
programs.ssh = {
enable = true;
controlMaster = "auto";
controlPersist = "1m";
forwardAgent = true;
matchBlocks = { };
};
}