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,13 +35,15 @@
dynamicZonesDir = "${bindData}/zones"; dynamicZonesDir = "${bindData}/zones";
in in
{ {
services.bind.zones.${testDomain} = { bind = {
zones.${testDomain} = {
master = true; master = true;
file = "${dynamicZonesDir}/${testDomain}"; file = "${dynamicZonesDir}/${testDomain}";
extraConfig = '' extraConfig = ''
allow-update { key rndc-key; }; allow-update { key rndc-key; };
''; '';
}; };
};
systemd.services.bind.preStart = '' systemd.services.bind.preStart = ''
# shellcheck disable=SC2211,SC1127 # shellcheck disable=SC2211,SC1127