nixfiles/nixops/bulldog/deployment_ip.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2021-03-13 15:32:44 +01:00
{
arion = { config, pkgs, ... }:{
deployment.targetHost = "arion.net.entr0py.de";
};
geon = { config, pkgs, ... }:{
deployment.targetHost = "geon.net.entr0py.de";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
2021-03-13 15:32:44 +01:00
};
pion = { config, pkgs, ... }:{
deployment.targetHost = "pion.net.entr0py.de";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
2021-03-13 15:32:44 +01:00
};
scotty-router = { config, pkgs, ... }:{
deployment.targetHost = "scotty-router";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
2021-03-13 15:32:44 +01:00
};
tailpipe = { config, pkgs, ... }:{
deployment.targetHost = "tailpipe.net.entr0py.de";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
2021-03-13 15:32:44 +01:00
};
dyon = { config, pkgs, ... }:{
deployment.targetHost = "dyon.net.entr0py.de";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
2021-03-13 15:32:44 +01:00
};
kaon = { config, pkgs, ... }:{
deployment.targetHost = "kaon.net.entr0py.de";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
2021-03-13 15:32:44 +01:00
};
2021-04-12 14:02:17 +02:00
nebula = { config, pkgs, ... }:{
deployment.targetHost = "nebula.net.entr0py.de";
2021-06-14 16:33:50 +02:00
hasFastConnection = true;
};
luxon = { config, pkgs, ... }:{
deployment.targetHost = "luxon.net.entr0py.de";
hasFastConnection = true;
2021-04-12 14:02:17 +02:00
};
2021-03-13 15:32:44 +01:00
}