From 45c92d191bccf13e2943765d3635a25e04dd33e7 Mon Sep 17 00:00:00 2001 From: pazpi Date: Wed, 6 Nov 2024 12:10:12 +0100 Subject: [PATCH] Set the DNS IP, not the most elegant thing --- hosts/arr/default.nix | 4 ++++ hosts/metrics/default.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/hosts/arr/default.nix b/hosts/arr/default.nix index 45a7353..04c16f4 100644 --- a/hosts/arr/default.nix +++ b/hosts/arr/default.nix @@ -26,5 +26,9 @@ openssh.enable = true; }; + networking = { + nameservers = [ "192.168.1.2" ]; + }; + system.stateVersion = "24.05"; } diff --git a/hosts/metrics/default.nix b/hosts/metrics/default.nix index ac198d4..cef04ab 100644 --- a/hosts/metrics/default.nix +++ b/hosts/metrics/default.nix @@ -71,5 +71,9 @@ in }; }; + networking = { + nameservers = [ "192.168.1.2" ]; + }; + system.stateVersion = "24.05"; }