infrastructure/machines/core-services-01/rz.nix
raito 2283ee602a Integrate core-services-01 in a nice workflow (#1)
This enables the tracking of core-services-01 over the infrastructure repository.

Co-authored-by: Gabriel DORIATH DOHLER <gabriel.doriath.dohler@ens.psl.eu>
Reviewed-on: https://git.rz.ens.wtf/Klub-RZ/infrastructure/pulls/1
Co-authored-by: raito <raito@noreply.git.rz.ens.wtf>
Co-committed-by: raito <raito@noreply.git.rz.ens.wtf>
2021-07-26 01:29:05 +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 "];
};
}