444 current 2025-06-28 01:55:23 25.05.20250424.f771eb4 6.12.24 *

This commit is contained in:
2025-06-28 01:55:45 -04:00
parent 2b02afa137
commit 9d01c26879
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{
config,
pkgs,
...
}: {
services.dnsmasq = {
enable = true;
resolveLocalQueries = true;
settings = {
listen-address = "127.0.0.1";
port = 53535; # anything thats free
};
};
}