homelab/hosts/sin/coredns/default.nix
shobu 65a47967da
All checks were successful
/ perform flake analysis (push) Successful in 32s
/ build hive configuration (push) Successful in 8m44s
add gitea jobs and runner configuration
build and deploy colmena hive using gitea actions
2025-11-12 12:25: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
}
'';
};
}