From 2ce98c3fc013f5e8017664e7f3ebd203c30197a7 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Sun, 10 Nov 2024 14:19:29 +0100 Subject: [PATCH] network: Do not set hostname --- modules/network.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/network.nix b/modules/network.nix index c08bc3c..2937276 100644 --- a/modules/network.nix +++ b/modules/network.nix @@ -1,6 +1,8 @@ -{ config, ... }: { +{ config, ... }: +{ networking = { useNetworkd = true; + hostName = ""; # Easy debugging. firewall.enable = false;