aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/ssh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-18 09:21:14 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-18 09:21:14 -0800
commit9fc1348eff0d18645a7de7197947ce73b5aecaf2 (patch)
tree7b6f780b20f053c4498f229a6d1dd3b43d7306a7 /nix/users/fcuny/ssh.nix
parentuse ssh instead of http when working on my repositories (diff)
downloadinfra-9fc1348eff0d18645a7de7197947ce73b5aecaf2.tar.gz
cleanup ssh match blocks
Diffstat (limited to 'nix/users/fcuny/ssh.nix')
-rw-r--r--nix/users/fcuny/ssh.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nix/users/fcuny/ssh.nix b/nix/users/fcuny/ssh.nix
index 17c2f03..2129650 100644
--- a/nix/users/fcuny/ssh.nix
+++ b/nix/users/fcuny/ssh.nix
@@ -8,12 +8,6 @@
controlPersist = "30m";
matchBlocks = {
- "personal" = {
- hostname = "github.com";
- user = "git";
- forwardAgent = false;
- extraOptions = { preferredAuthentications = "publickey"; };
- };
"github.com" = {
hostname = "github.com";
user = "git";
@@ -33,6 +27,12 @@
forwardAgent = false;
extraOptions = { preferredAuthentications = "publickey"; };
};
+ "home" = {
+ hostname = "fcuny.net";
+ port = 422;
+ user = "fcuny";
+ extraOptions = { preferredAuthentications = "publickey"; };
+ };
};
};
}