fix(tailscale): Disable tailscale checks to allow build on darwin

This commit is contained in:
Mohammad Rafiq 2025-07-14 13:56:56 +08:00
parent 74dcb8fed0
commit 80c63d155d
No known key found for this signature in database

View file

@ -19,12 +19,7 @@ in
{
services.tailscale = {
enable = true;
package = pkgs.tailscale.overrideAttrs {
checkFlags = [
"-skip"
"TestProtocolQEMU|TestProtocolUnixDgram"
];
};
package = pkgs.tailscale.overrideAttrs { doCheck = false; };
};
};
}