16 lines
238 B
Nix
16 lines
238 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.dnsmasq = {
|
|
enable = true;
|
|
resolveLocalQueries = true;
|
|
settings = {
|
|
conf-dir = "/var/lib/dnsmasq/conf.d";
|
|
listen-address = "127.0.0.1";
|
|
port = "53535";
|
|
};
|
|
};
|
|
}
|