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 = { services.tailscale = {
enable = true; enable = true;
package = pkgs.tailscale.overrideAttrs { package = pkgs.tailscale.overrideAttrs { doCheck = false; };
checkFlags = [
"-skip"
"TestProtocolQEMU|TestProtocolUnixDgram"
];
};
}; };
}; };
} }