aboutsummaryrefslogtreecommitdiff
path: root/home/programs/ssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/programs/ssh.nix')
-rw-r--r--home/programs/ssh.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/home/programs/ssh.nix b/home/programs/ssh.nix
index 004b082..77c4897 100644
--- a/home/programs/ssh.nix
+++ b/home/programs/ssh.nix
@@ -13,25 +13,50 @@
};
"rivendell" = {
hostname = "192.168.1.114";
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
};
"riv-unlock" = {
hostname = "192.168.1.114";
user = "root";
port = 911;
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
};
"nas" = {
hostname = "192.168.1.68";
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
+ };
+ "nnas" = {
+ hostname = "192.168.1.68";
+ user = "nas";
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
};
"bree" = {
hostname = "192.168.1.50";
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
};
"argonath" = {
hostname = "fcuny.net";
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
};
"github.com" = {
hostname = "github.com";
user = "git";
forwardAgent = false;
+ identityAgent = "none";
+ identitiesOnly = true;
+ identityFile = "~/.ssh/id_ed25519_sk_rk";
extraOptions = {
preferredAuthentications = "publickey";
controlMaster = "no";