homelab/hosts/sin/coredns/default.nix
shobu c901116678
Some checks failed
/ Build Nix targets (push) Successful in 44s
/ build hive configuration (push) Failing after 19s
test
2025-11-12 04:15:22 +01:00

21 lines
281 B
Nix

{...}: {
services.coredns = {
enable = false;
config = ''
homelab.local {
log
errors
cache
file ${./db.homelab.local}
}
. {
forward . 8.8.8.8
log
errors
cache
}
'';
};
}