diff options
Diffstat (limited to 'home/profiles/ssh.nix')
| -rw-r--r-- | home/profiles/ssh.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/home/profiles/ssh.nix b/home/profiles/ssh.nix new file mode 100644 index 0000000..576f451 --- /dev/null +++ b/home/profiles/ssh.nix @@ -0,0 +1,18 @@ +{ ... }: +{ + programs.ssh = { + enable = true; + forwardAgent = true; + serverAliveInterval = 60; + controlMaster = "auto"; + controlPersist = "30m"; + matchBlocks = { + "github.com" = { + hostname = "github.com"; + user = "git"; + forwardAgent = false; + extraOptions = { preferredAuthentications = "publickey"; }; + }; + }; + }; +} |
