Files
homelab/hosts/sin/coredns/default.nix
Sin Ser'hao 56ffeaf5a0
Some checks failed
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Failing after 8m50s
format && add nix-serve for caching
2026-01-07 15:29:28 +01:00

22 lines
277 B
Nix

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