nixos-config/hosts/lily/dns.nix

13 lines
183 B
Nix
Raw Normal View History

2025-05-17 18:20:32 +02:00
{ lib, config, ... }:
{
services = {
dnsmasq = {
enable = true;
settings = {
cache-size = 10000;
server = [ "127.0.0.1#53" ];
};
};
};
}