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; }