summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-05-06 16:39:08 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-05-06 16:39:08 -0600
commita20d052b7f129205da74d2986c6b96dda96f1638 (patch)
treee775489ff89153171d258325c21a88fbd1d0ba28 /services
parent5ce495b876af97250d08d4edb033221113bd1da7 (diff)
downloadcfg.nix-a20d052b7f129205da74d2986c6b96dda96f1638.tar.gz
cfg.nix-a20d052b7f129205da74d2986c6b96dda96f1638.tar.xz
system/dnsmasq: use port 53
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'services')
-rw-r--r--services/dnsmasq.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/dnsmasq.nix b/services/dnsmasq.nix
index 717ca45..7a33d82 100644
--- a/services/dnsmasq.nix
+++ b/services/dnsmasq.nix
@@ -2,5 +2,5 @@
{
# Local DNS server
services.dnsmasq.enable = true;
- services.dnsmasq.servers = [ "127.0.0.1#43" ];
+ services.dnsmasq.servers = [ "127.0.0.1#53" ];
}