depot/hosts/part.nix

45 lines
797 B
Nix
Raw Normal View History

2023-02-24 16:16:15 +02:00
let
tools = import ./tools.nix;
in with tools.dns;
{
imports = [
./deploy.nix
./nixos.nix
./options
];
gods = {
fromLight = {
checkmate = import ./checkmate tools;
2023-03-20 20:52:07 +02:00
thunderskin = import ./thunderskin tools;
2023-02-24 16:16:15 +02:00
VEGAS = import ./VEGAS tools;
2023-03-21 23:08:56 +02:00
prophet = import ./prophet tools;
2023-11-04 01:24:43 +02:00
grail = import ./grail tools;
};
2023-03-21 23:08:56 +02:00
fromFlesh = {
2023-02-24 16:16:15 +02:00
soda = import ./soda tools;
};
fromNowhere = {
# peering
# max
TITAN.hyprspace = {
enable = true;
id = "QmfJ5Tv2z9jFv9Aocevyn6QqRcfm9eYQZhvYvmAVfACfuM";
# addr = "10.100.3.7";
2023-02-24 16:16:15 +02:00
};
jericho.hyprspace = {
enable = true;
id = "QmccBLgGP3HR36tTkwSYZX3KDv2EXb1MvYwGVs6PbpbHv9";
# addr = "10.100.3.13";
2023-02-24 16:16:15 +02:00
};
};
};
}