From bfdbf6a6389457edd54beb886df152a4672e7711 Mon Sep 17 00:00:00 2001 From: Fabian Hauser Date: Mon, 3 Mar 2025 21:19:00 +0200 Subject: [PATCH] Ignore tailscale interfaces in wait-online --- nixos-configurations/ochsenchopf/networking.nix | 2 ++ nixos-configurations/speer/networking.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/nixos-configurations/ochsenchopf/networking.nix b/nixos-configurations/ochsenchopf/networking.nix index 07fb8b7..cc6848e 100644 --- a/nixos-configurations/ochsenchopf/networking.nix +++ b/nixos-configurations/ochsenchopf/networking.nix @@ -10,6 +10,8 @@ useDHCP = false; }; + systemd.network.wait-online.enable = false; + systemd.network.wait-online.ignoredInterfaces = [ "tailscale0" ]; services.tailscale = { enable = true; openFirewall = true; diff --git a/nixos-configurations/speer/networking.nix b/nixos-configurations/speer/networking.nix index 9ec98da..2845d78 100644 --- a/nixos-configurations/speer/networking.nix +++ b/nixos-configurations/speer/networking.nix @@ -6,6 +6,8 @@ }; + systemd.network.wait-online.enable = false; + systemd.network.wait-online.ignoredInterfaces = [ "tailscale0" ]; services.tailscale = { enable = true; openFirewall = true;