2021-06-05 23:59:06 +03:00
|
|
|
let
|
|
|
|
tools = import ./tools.nix;
|
|
|
|
in with tools.dns; {
|
|
|
|
|
|
|
|
# NixOS machines
|
|
|
|
styx = import ./styx tools;
|
2021-06-12 23:28:09 +03:00
|
|
|
meet = import ./meet tools;
|
2021-06-25 05:11:26 +03:00
|
|
|
git = import ./git tools;
|
2021-06-05 23:59:06 +03:00
|
|
|
|
|
|
|
# Non-NixOS machine metadata
|
|
|
|
VEGAS = {
|
|
|
|
ssh.id = {
|
|
|
|
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICz2nGA+Y4OxhMKsV6vKIns3hOoBkK557712h7FfWXcE";
|
|
|
|
hostNames = subResolve "vegas" "backbone";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
AnimusAlpha = let hostNames = [ "alpha.animus.com" "animus.com" ]; in {
|
|
|
|
ssh.id = {
|
|
|
|
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGpFR47Ev+W+bdng6IrDVpl8rlKBBHSr1v5lwJmZcEFH";
|
|
|
|
hostNames = portMap 69 hostNames;
|
|
|
|
};
|
|
|
|
ssh.extraConfig = tools.ssh.extraConfig hostNames [ "Port 69" ];
|
|
|
|
};
|
|
|
|
}
|