boot, tailscale: Apply kernel regression patch instead of workarounds

This commit is contained in:
Katherina Walshe-Grey 2025-09-08 12:39:40 +01:00
parent 598f1dc742
commit e82d1792c9
2 changed files with 13 additions and 17 deletions

View file

@ -20,21 +20,4 @@
};
networking.domain = "birdsong.network";
# Workaround for: https://github.com/tailscale/tailscale/issues/16966
nixpkgs.overlays = [
(_: prev: {
tailscale = prev.tailscale.overrideAttrs (old: {
checkFlags =
builtins.map
(
flag:
if prev.lib.hasPrefix "-skip=" flag
then flag + "|^TestGetList$|^TestIgnoreLocallyBoundPorts$|^TestPoller$"
else flag
)
old.checkFlags;
});
})
];
}