aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/cli/ssh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-04 07:05:54 -0800
committerFranck Cuny <franck@fcuny.net>2022-03-04 07:05:54 -0800
commita422cff8f8282ff4f3c462f818dbcf5d80e6d166 (patch)
treed2d6a34bd6899b1b2b3f9124b07a305c9c581b1d /users/fcuny/cli/ssh.nix
parentnix: format the buffer (diff)
downloadinfra-a422cff8f8282ff4f3c462f818dbcf5d80e6d166.tar.gz
ssh: new module, and load it for my user
Diffstat (limited to '')
-rw-r--r--users/fcuny/cli/ssh.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/users/fcuny/cli/ssh.nix b/users/fcuny/cli/ssh.nix
new file mode 100644
index 0000000..9708660
--- /dev/null
+++ b/users/fcuny/cli/ssh.nix
@@ -0,0 +1,17 @@
+{
+ 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"; };
+ };
+ };
+ };
+}