Compare commits

..

1 commit

Author SHA1 Message Date
308eff1409
fix(flake): switch to github ref
Some checks failed
/ build (push) Successful in 3s
/ check (push) Failing after 5s
/ report-size (push) Successful in 7s
Switch from a flake ref to a github ref as renovate cannot resolve flake
refs, and they are slightly impure.

This shows some issues with the previous patch to the bind module which
we fix.
2024-12-29 18:17:10 +01:00

View file

@ -35,12 +35,14 @@
dynamicZonesDir = "${bindData}/zones"; dynamicZonesDir = "${bindData}/zones";
in in
{ {
services.bind.zones.${testDomain} = { bind = {
master = true; zones.${testDomain} = {
file = "${dynamicZonesDir}/${testDomain}"; master = true;
extraConfig = '' file = "${dynamicZonesDir}/${testDomain}";
allow-update { key rndc-key; }; extraConfig = ''
''; allow-update { key rndc-key; };
'';
};
}; };
systemd.services.bind.preStart = '' systemd.services.bind.preStart = ''