Compare commits

..

3 Commits

Author SHA1 Message Date
Richie c0d5e848b8 updated Primary nic
treefmt / nix fmt (pull_request) Successful in 6s
pytest / pytest (pull_request) Successful in 56s
build_systems / build-brain (pull_request) Successful in 59s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m34s
build_systems / build-bob (pull_request) Successful in 1m0s
build_systems / build-leviathan (pull_request) Successful in 1m30s
build_systems / build-jeeves (pull_request) Successful in 2m42s
2026-06-04 17:36:45 -04:00
Richie 65a717698b adding brave 2026-06-04 15:08:04 -04:00
Richie df817a0b1b fixing jeeves dns 2026-06-04 15:08:04 -04:00
+29 -29
View File
@@ -2,46 +2,46 @@
programs.ssh = {
enable = true;
enableDefaultConfig = false;
settings = {
matchBlocks = {
jeeves = {
HostName = "192.168.90.40";
User = "richie";
IdentityFile = "~/.ssh/id_ed25519";
Port = 629;
DynamicForward = [ { port = 9050; } ];
Compression = true;
hostname = "192.168.90.40";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 629;
dynamicForwards = [ { port = 9050; } ];
compression = true;
};
unlock-jeeves = {
HostName = "192.168.99.14";
User = "root";
IdentityFile = "~/.ssh/id_ed25519";
Port = 2222;
hostname = "192.168.99.14";
user = "root";
identityFile = "~/.ssh/id_ed25519";
port = 2222;
};
brain = {
HostName = "192.168.90.35";
User = "richie";
IdentityFile = "~/.ssh/id_ed25519";
Port = 129;
DynamicForward = [ { port = 9050; } ];
hostname = "192.168.90.35";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 129;
dynamicForwards = [ { port = 9050; } ];
};
unlock-brain = {
HostName = "192.168.95.35";
User = "root";
IdentityFile = "~/.ssh/id_ed25519";
Port = 2222;
hostname = "192.168.95.35";
user = "root";
identityFile = "~/.ssh/id_ed25519";
port = 2222;
};
bob = {
HostName = "192.168.90.25";
User = "richie";
IdentityFile = "~/.ssh/id_ed25519";
Port = 262;
DynamicForward = [ { port = 9050; } ];
hostname = "192.168.90.25";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 262;
dynamicForwards = [ { port = 9050; } ];
};
rhapsody-in-green = {
HostName = "192.168.90.221";
User = "richie";
IdentityFile = "~/.ssh/id_ed25519";
Port = 922;
hostname = "192.168.90.221";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 922;
};
};
};