fix(headscale): add back missing records #38

merged
opened by a.starrysky.fyi targeting main from private/minion/push-rvzwppymvnkt

We previously had these records, but we lost them when migrating stuff...

They are internal mirrors of some external mostlyturquoise records

Changed files
+14
packetmix
systems
+14
packetmix/systems/teal/headscale.nix
··· 111 ); 112 }; 113 dns = { 114 nameservers.global = [ 115 "1.1.1.1" 116 "1.0.0.1"
··· 111 ); 112 }; 113 dns = { 114 + extra_records = [ 115 + { 116 + # cartandflynns.turquoise.fyi -> nordic 117 + name = "cartandflynns.turquoise.fyi"; 118 + type = "A"; 119 + value = "100.64.0.37"; 120 + } 121 + { 122 + # puttheleeinholly.turquoise.fyi -> nordic 123 + name = "puttheleeinholly.turquoise.fyi"; 124 + type = "A"; 125 + value = "100.64.0.37"; 126 + } 127 + ]; 128 nameservers.global = [ 129 "1.1.1.1" 130 "1.0.0.1"