From 5e59add85b0a31357482705c815cf2fca3719d96 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 15 Aug 2025 16:41:39 +0000 Subject: [PATCH] Enable network on all hosts I've been using networkd quite a bit in my personal work. Adding this fixed my DNS resolution issues, so I'm keeping it. --- modules/system/base.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system/base.nix b/modules/system/base.nix index 35b0a87..fe3d1c7 100644 --- a/modules/system/base.nix +++ b/modules/system/base.nix @@ -17,6 +17,7 @@ i18n.defaultLocale = "en_US.UTF-8"; nix.settings.experimental-features = [ "nix-command" "flakes" ]; services.swapspace.enable = true; + systemd.network.enable = true; time.timeZone = "UTC"; zramSwap.enable = true;