summaryrefslogtreecommitdiff
path: root/services/dnsmasq.nix
blob: 7a33d8273a8c50e09d1287a032877ef5e9b7a05b (plain)
1
2
3
4
5
6
{ config, ... }:
{
  # Local DNS server
  services.dnsmasq.enable = true;
  services.dnsmasq.servers = [ "127.0.0.1#53" ];
}