mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
13 lines
309 B
Nix
13 lines
309 B
Nix
_: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
controlMaster = "auto";
|
|
controlPersist = "10m";
|
|
hashKnownHosts = true;
|
|
compression = true;
|
|
forwardAgent = true;
|
|
/*extraConfig = ''
|
|
RemoteForward /run/user/1000/gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra
|
|
'';*/
|
|
};
|
|
}
|