infrastructure/machines/core-services-01/rz.nix
Gabriel DORIATH DOHLER 6f4068ff5c machines: add core-services-01
- acme-dns for internal DNS-01 challenges
- nsd for zone rz.ens.wtf
- unbound for internal usage and resolutions
- dokuwiki for network documentation
- gitea for this very repository and many more
- keycloak for SSO over all services
- monitoring (netdata, grafana/influxdb soon)
- netboot for easy provisioning of other machines

Co-authored-by: Ryan Lahfa <ryan.lahfa@ens.fr>
2021-07-26 01:26:13 +02:00

18 lines
377 B
Nix

{ lib, ... }:
{
imports = [ ./my.nix ];
my = {
email = "club-reseau@lists.ens.psl.eu";
acmeStaging = false;
subZone = "rz.ens.wtf";
ipv6.standardFull = [
"2001:470:1f13:187:fd34:80c3:a761:ff2/64"
];
ipv6.acmeFull = "2001:470:1f13:187:a039:c3ff:fe4f:8661/64";
ipv4Full = [ "10.1.1.20/24" ];
privateRanges = [ "10.1.0.0/22 "];
};
}