From df432f8e8a6c7816d0aeccd40210614f2bddfc80 Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 28 Jul 2019 01:10:44 +0200 Subject: [PATCH] dhcp: fix syntax --- hosts/containers/dhcp/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/containers/dhcp/configuration.nix b/hosts/containers/dhcp/configuration.nix index a3d9942d..530345d1 100644 --- a/hosts/containers/dhcp/configuration.nix +++ b/hosts/containers/dhcp/configuration.nix @@ -9,7 +9,7 @@ networking.hostName = "dhcp"; networking.defaultGateway = "172.22.99.1"; - networking.nameservers = [ ""172.20.73.8" "172.20.72.6" "172.20.72.10" "9.9.9.9" ]; + networking.nameservers = [ "172.20.73.8" "172.20.72.6" "172.20.72.10" "9.9.9.9" ]; networking.interfaces.eth0 = { ipv4.addresses = [ { address = "172.22.99.254";