tv: privatize gg23
This commit is contained in:
parent
b0880d5736
commit
c61d99ccc6
@ -108,7 +108,6 @@ let
|
|||||||
{
|
{
|
||||||
krebs.dns.providers = {
|
krebs.dns.providers = {
|
||||||
"krebsco.de" = "zones";
|
"krebsco.de" = "zones";
|
||||||
gg23 = "hosts";
|
|
||||||
shack = "hosts";
|
shack = "hosts";
|
||||||
i = "hosts";
|
i = "hosts";
|
||||||
r = "hosts";
|
r = "hosts";
|
||||||
|
@ -131,11 +131,6 @@ in {
|
|||||||
ci = true;
|
ci = true;
|
||||||
cores = 2;
|
cores = 2;
|
||||||
nets = {
|
nets = {
|
||||||
gg23 = {
|
|
||||||
ip4.addr = "10.23.1.110";
|
|
||||||
aliases = ["nomic.gg23"];
|
|
||||||
ssh.port = 11423;
|
|
||||||
};
|
|
||||||
retiolum = {
|
retiolum = {
|
||||||
ip4.addr = "10.243.0.110";
|
ip4.addr = "10.243.0.110";
|
||||||
aliases = [
|
aliases = [
|
||||||
@ -158,27 +153,10 @@ in {
|
|||||||
ssh.privkey.path = <secrets/ssh.id_ed25519>;
|
ssh.privkey.path = <secrets/ssh.id_ed25519>;
|
||||||
ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMIHmwXHV7E9UGuk4voVCADjlLkyygqNw054jvrsPn5t root@nomic";
|
ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMIHmwXHV7E9UGuk4voVCADjlLkyygqNw054jvrsPn5t root@nomic";
|
||||||
};
|
};
|
||||||
ok = {
|
|
||||||
external = true;
|
|
||||||
nets = {
|
|
||||||
gg23 = {
|
|
||||||
ip4.addr = "10.23.1.1";
|
|
||||||
aliases = ["ok.gg23"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
wu = {
|
wu = {
|
||||||
ci = true;
|
ci = true;
|
||||||
cores = 4;
|
cores = 4;
|
||||||
nets = {
|
nets = {
|
||||||
gg23 = {
|
|
||||||
ip4.addr = "10.23.1.37";
|
|
||||||
aliases = [
|
|
||||||
"wu.gg23"
|
|
||||||
"cache.wu.gg23"
|
|
||||||
];
|
|
||||||
ssh.port = 11423;
|
|
||||||
};
|
|
||||||
retiolum = {
|
retiolum = {
|
||||||
ip4.addr = "10.243.13.37";
|
ip4.addr = "10.243.13.37";
|
||||||
aliases = [
|
aliases = [
|
||||||
@ -237,14 +215,6 @@ in {
|
|||||||
ci = true;
|
ci = true;
|
||||||
cores = 4;
|
cores = 4;
|
||||||
nets = {
|
nets = {
|
||||||
gg23 = {
|
|
||||||
ip4.addr = "10.23.1.38";
|
|
||||||
aliases = [
|
|
||||||
"xu.gg23"
|
|
||||||
"cache.xu.gg23"
|
|
||||||
];
|
|
||||||
ssh.port = 11423;
|
|
||||||
};
|
|
||||||
retiolum = {
|
retiolum = {
|
||||||
ip4.addr = "10.243.13.38";
|
ip4.addr = "10.243.13.38";
|
||||||
aliases = [
|
aliases = [
|
||||||
@ -272,13 +242,6 @@ in {
|
|||||||
ci = true;
|
ci = true;
|
||||||
cores = 4;
|
cores = 4;
|
||||||
nets = {
|
nets = {
|
||||||
gg23 = {
|
|
||||||
ip4.addr = "10.23.1.39";
|
|
||||||
aliases = [
|
|
||||||
"zu.gg23"
|
|
||||||
];
|
|
||||||
ssh.port = 11423;
|
|
||||||
};
|
|
||||||
retiolum = {
|
retiolum = {
|
||||||
ip4.addr = "10.243.13.40";
|
ip4.addr = "10.243.13.40";
|
||||||
aliases = [
|
aliases = [
|
||||||
|
@ -16,6 +16,7 @@ with import <stockholm/lib>;
|
|||||||
./backup.nix
|
./backup.nix
|
||||||
./bash
|
./bash
|
||||||
./htop.nix
|
./htop.nix
|
||||||
|
./nets/gg23.nix
|
||||||
./nginx
|
./nginx
|
||||||
./pki
|
./pki
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
69
tv/2configs/nets/gg23.nix
Normal file
69
tv/2configs/nets/gg23.nix
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
krebs = {
|
||||||
|
dns.providers.gg23 = "hosts";
|
||||||
|
hosts = {
|
||||||
|
nomic = {
|
||||||
|
nets.gg23 = {
|
||||||
|
ip4 = {
|
||||||
|
addr = "10.23.1.110";
|
||||||
|
prefix = "10.23.1.0/24";
|
||||||
|
};
|
||||||
|
aliases = [
|
||||||
|
"nomic.gg23"
|
||||||
|
];
|
||||||
|
ssh.port = 11423;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
ok = {
|
||||||
|
external = true;
|
||||||
|
nets.gg23 = {
|
||||||
|
ip4 = {
|
||||||
|
addr = "10.23.1.1";
|
||||||
|
prefix = "10.23.1.0/24";
|
||||||
|
};
|
||||||
|
aliases = [
|
||||||
|
"ok.gg23"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
wu = {
|
||||||
|
nets.gg23 = {
|
||||||
|
ip4 = {
|
||||||
|
addr = "10.23.1.37";
|
||||||
|
prefix = "10.23.1.0/24";
|
||||||
|
};
|
||||||
|
aliases = [
|
||||||
|
"wu.gg23"
|
||||||
|
"cache.wu.gg23"
|
||||||
|
];
|
||||||
|
ssh.port = 11423;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
xu = {
|
||||||
|
nets.gg23 = {
|
||||||
|
ip4 = {
|
||||||
|
addr = "10.23.1.38";
|
||||||
|
prefix = "10.23.1.0/24";
|
||||||
|
};
|
||||||
|
aliases = [
|
||||||
|
"xu.gg23"
|
||||||
|
"cache.xu.gg23"
|
||||||
|
];
|
||||||
|
ssh.port = 11423;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
zu = {
|
||||||
|
nets.gg23 = {
|
||||||
|
ip4 = {
|
||||||
|
addr = "10.23.1.39";
|
||||||
|
prefix = "10.23.1.0/24";
|
||||||
|
};
|
||||||
|
aliases = [
|
||||||
|
"zu.gg23"
|
||||||
|
];
|
||||||
|
ssh.port = 11423;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user