quitte: use unbound

This commit is contained in:
Rouven Seifert 2025-05-09 22:32:04 +02:00
parent 1833aeb84d
commit 36b8f77764
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ ... }:
{
services.unbound = {
enable = true;
settings = {
server = {
interface = [ "127.0.0.1" ];
access-control = [ "127.0.0.1 allow" ];
};
stub-zone = [
{
name = ".";
}
];
};
};
}