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