21 lines
281 B
Nix
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
|
|
}
|
|
'';
|
|
};
|
|
}
|