This commit is contained in:
chris 2025-04-17 16:11:14 +02:00
parent 61e90ba1a5
commit 0caa35fe9a
Signed by: c6ristian
SSH key fingerprint: SHA256:B3m+yzpaxGXSEcDBpPHfvza/DNC0wuX+CKMeGq8wgak
2 changed files with 15 additions and 5 deletions

View file

@ -1,13 +1,11 @@
$ORIGIN eh22.intern.
@ 0 IN SOA auth-dns.noc noc.eh22.easterhegg.eu. 1 7200 3600 3600000 60
@ 0 IN NS 10.20.25.3.
cookies 0 IN A 94.45.254.3
jool 0 IN A 94.45.254.4
auth-dns.noc 0 IN A 94.45.255.3
auth-dns.noc 0 IN A 94.45.254.3
grafana.noc 0 IN CNAME monitoring.noc
loki.noc 0 IN CNAME monitoring.noc
mimir.noc 0 IN CNAME monitoring.noc
monitoring.noc 0 IN A 94.45.255.4
monitoring.noc 0 IN A 94.45.254.4
resolv-dns 0 IN A 94.45.254.6
proxmox.noc 0 IN A 94.45.255.2
router.noc 0 IN A 94.45.255.2
resolv-dns 0 IN A 94.45.254.2

View file

@ -58,6 +58,18 @@ in
allowedUDPPorts = [ 53 ];
};
networking = {
interfaces.ens18 = {
ipv4.addresses = [
{
address = "94.45.254.3";
prefixLength = 25;
}
];
};
defaultGateway = "94.45.254.1";
};
# DO NOT CHANGE
# this defines the first version of NixOS that was installed on the machine so that programs with non-migratable data files are kept compatible
home-manager.users.noc.home.stateVersion = "24.11";