From 5d99eef26d7ba68455039b3d0da6b1bcf72593c8 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 8 Apr 2025 14:44:49 -0400 Subject: [PATCH] patches: handle tailscale not having patches --- overlays/patches/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/patches/default.nix b/overlays/patches/default.nix index 421ba61..b713e06 100644 --- a/overlays/patches/default.nix +++ b/overlays/patches/default.nix @@ -14,7 +14,7 @@ in }); tailscale-doge = prev.tailscale.overrideAttrs (old: { - patches = old.patches ++ [ ./tailscale-cgnat.patch ]; + patches = (old.patches or [ ]) ++ [ ./tailscale-cgnat.patch ]; doCheck = false; # patch causes some tests to fail });