tailscale: Add workaround for kernel bug
This commit is contained in:
parent
9e2f48c9dd
commit
3d5278e32b
1 changed files with 17 additions and 0 deletions
|
@ -20,4 +20,21 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.domain = "birdsong.network";
|
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;
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue