15 lines
217 B
Nix
15 lines
217 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.dnsmasq = {
|
|
enable = true;
|
|
resolveLocalQueries = true;
|
|
settings = {
|
|
# listen-address = "127.0.0.1";
|
|
# port = 53535; # a free address lol
|
|
};
|
|
};
|
|
}
|