From 816dd2b076c71c8a30f7d6615fc59c69236d9a40 Mon Sep 17 00:00:00 2001 From: randogoth Date: Tue, 10 Feb 2026 08:32:23 +0200 Subject: [PATCH] fix --- modules/system/networking.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/system/networking.nix b/modules/system/networking.nix index efbee10..1cbd680 100644 --- a/modules/system/networking.nix +++ b/modules/system/networking.nix @@ -1,4 +1,4 @@ -{ lib, ... }: +{ config, lib, ... }: { networking = { @@ -9,6 +9,7 @@ trustedInterfaces = [ "tailscale0" ]; allowedUDPPorts = [ config.services.tailscale.port ]; }; + }; systemd.network.wait-online.enable = false; boot.initrd.systemd.network.wait-online.enable = false; }