nix-config/hq.nixops

40 lines
751 B
Plaintext
Raw Normal View History

2019-04-01 03:10:31 +02:00
{
network.description = "C3D2 HQ";
"grafana" =
{ ... }:
{
imports = [
hosts/storage-ng/grafana/configuration.nix
];
2019-04-02 16:44:40 +02:00
deployment = {
targetHost = "grafana.hq.c3d2.de";
storeKeysOnMachine = true;
};
2019-04-01 03:10:31 +02:00
};
"dhcp" =
{ ... }:
{
imports = [
hosts/storage-ng/dhcp/configuration.nix
];
2019-04-02 16:44:40 +02:00
deployment = {
targetHost = "2a02:8106:208:5201:3801:15ff:fe95:8988";
storeKeysOnMachine = true;
};
2019-04-01 03:10:31 +02:00
};
2019-04-07 00:58:42 +02:00
"mucbot" =
{ ... }:
{
imports = [
hosts/storage-ng/mucbot/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201:28db:dff:fe6b:e89a";
storeKeysOnMachine = true;
};
};
2019-04-01 03:10:31 +02:00
}