22 lines
619 B
Nix
22 lines
619 B
Nix
{ config, lib, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
addKeysToAgent = "yes";
|
|
compression = true;
|
|
matchBlocks = {
|
|
# Personal servers
|
|
tower.hostname = "577:84d1:b682:9ac3:b987:b78e:33d9:2060";
|
|
jupiter.hostname = "5ce:969c:40d1:9575:f5e:591d:c377:a20b";
|
|
midas.hostname = "538:e163:87ba:f847:3646:18b6:6b01:d8f8";
|
|
kitty.hostname = "53f:dc2d:80c9:3ca2:4b15:ef4d:38a0:c868";
|
|
prophet.hostname = "42f:2737:2aed:4dee:cbe4:3c73:1918:ad9b";
|
|
|
|
# Misc
|
|
seneca = {
|
|
hostname = "matrix.senecapolytechnic.ca";
|
|
user = "jhampton1";
|
|
};
|
|
};
|
|
};
|
|
}
|