configurations of hq services
https://hydra.hq.c3d2.de/jobset/c3d2/nix-config#tabs-jobs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
972 B
51 lines
972 B
{ |
|
network.description = "C3D2 HQ"; |
|
|
|
"grafana" = |
|
{ ... }: |
|
{ |
|
imports = [ |
|
hosts/containers/grafana/configuration.nix |
|
]; |
|
deployment = { |
|
targetHost = "grafana.hq.c3d2.de"; |
|
storeKeysOnMachine = true; |
|
}; |
|
}; |
|
|
|
"dhcp" = |
|
{ ... }: |
|
{ |
|
imports = [ |
|
hosts/containers/dhcp/configuration.nix |
|
]; |
|
deployment = { |
|
targetHost = "2a02:8106:208:5201:3801:15ff:fe95:8988"; |
|
storeKeysOnMachine = true; |
|
}; |
|
}; |
|
|
|
"mucbot" = |
|
{ ... }: |
|
{ |
|
imports = [ |
|
hosts/containers/mucbot/configuration.nix |
|
]; |
|
deployment = { |
|
targetHost = "2a02:8106:208:5201:28db:dff:fe6b:e89a"; |
|
storeKeysOnMachine = true; |
|
}; |
|
}; |
|
|
|
"mpd-index" = |
|
{ ... }: |
|
{ |
|
imports = [ |
|
hosts/containers/mpd-index/configuration.nix |
|
]; |
|
deployment = { |
|
targetHost = "2a02:8106:208:5201:5ca3:f7ff:fe6d:dcf0"; |
|
storeKeysOnMachine = true; |
|
}; |
|
}; |
|
}
|
|
|