updated my ssh config.nix #9
@@ -2,46 +2,46 @@
|
|||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableDefaultConfig = false;
|
enableDefaultConfig = false;
|
||||||
matchBlocks = {
|
settings = {
|
||||||
jeeves = {
|
jeeves = {
|
||||||
hostname = "192.168.90.40";
|
HostName = "192.168.90.40";
|
||||||
user = "richie";
|
User = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
IdentityFile = "~/.ssh/id_ed25519";
|
||||||
port = 629;
|
Port = 629;
|
||||||
dynamicForwards = [ { port = 9050; } ];
|
DynamicForward = [ { port = 9050; } ];
|
||||||
compression = true;
|
Compression = true;
|
||||||
};
|
};
|
||||||
unlock-jeeves = {
|
unlock-jeeves = {
|
||||||
hostname = "192.168.99.14";
|
HostName = "192.168.99.14";
|
||||||
user = "root";
|
User = "root";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
IdentityFile = "~/.ssh/id_ed25519";
|
||||||
port = 2222;
|
Port = 2222;
|
||||||
};
|
};
|
||||||
brain = {
|
brain = {
|
||||||
hostname = "192.168.90.35";
|
HostName = "192.168.90.35";
|
||||||
user = "richie";
|
User = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
IdentityFile = "~/.ssh/id_ed25519";
|
||||||
port = 129;
|
Port = 129;
|
||||||
dynamicForwards = [ { port = 9050; } ];
|
DynamicForward = [ { port = 9050; } ];
|
||||||
};
|
};
|
||||||
unlock-brain = {
|
unlock-brain = {
|
||||||
hostname = "192.168.95.35";
|
HostName = "192.168.95.35";
|
||||||
user = "root";
|
User = "root";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
IdentityFile = "~/.ssh/id_ed25519";
|
||||||
port = 2222;
|
Port = 2222;
|
||||||
};
|
};
|
||||||
bob = {
|
bob = {
|
||||||
hostname = "192.168.90.25";
|
HostName = "192.168.90.25";
|
||||||
user = "richie";
|
User = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
IdentityFile = "~/.ssh/id_ed25519";
|
||||||
port = 262;
|
Port = 262;
|
||||||
dynamicForwards = [ { port = 9050; } ];
|
DynamicForward = [ { port = 9050; } ];
|
||||||
};
|
};
|
||||||
rhapsody-in-green = {
|
rhapsody-in-green = {
|
||||||
hostname = "192.168.90.221";
|
HostName = "192.168.90.221";
|
||||||
user = "richie";
|
User = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
IdentityFile = "~/.ssh/id_ed25519";
|
||||||
port = 922;
|
Port = 922;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user