feat: enable dnsmasq

This commit is contained in:
Ahwx 2025-05-17 18:20:32 +02:00
parent c4a99482cf
commit 232e57415a

12
hosts/lily/dns.nix Normal file
View file

@ -0,0 +1,12 @@
{ lib, config, ... }:
{
services = {
dnsmasq = {
enable = true;
settings = {
cache-size = 10000;
server = [ "127.0.0.1#53" ];
};
};
};
}