diff --git a/flake.nix b/flake.nix index 7155240..250e03e 100644 --- a/flake.nix +++ b/flake.nix @@ -102,6 +102,18 @@ inherit system; config.allowUnfree = true; }; + + tailscale = super.tailscale.overrideAttrs (old: { + checkFlags = + builtins.map ( + flag: + if super.lib.hasPrefix "-skip=" flag + then flag + "|^TestGetList$|^TestIgnoreLocallyBoundPorts$|^TestPoller$" + else flag + ) + old.checkFlags; + }); + }) agenix.overlays.default