stockholm/tv/2configs/nets/hkw.nix

70 lines
1.3 KiB
Nix
Raw Normal View History

2020-08-19 00:26:27 +00:00
{
krebs = {
2020-08-19 00:30:51 +00:00
dns.providers.hkw = "hosts";
2020-08-19 00:26:27 +00:00
hosts = {
nomic = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.110";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"nomic.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
ok = {
external = true;
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.1";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"ok.hkw"
2020-08-19 00:26:27 +00:00
];
};
};
wu = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.37";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"wu.hkw"
"cache.wu.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
xu = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.38";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"xu.hkw"
"cache.xu.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
zu = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.39";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"zu.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
};
};
}