22 lines
277 B
Nix
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
|
|
}
|
|
'';
|
|
};
|
|
}
|