feat(tailscale): Enable tailscale on darwin and skip some tests
This commit is contained in:
parent
42ef2d6c01
commit
74dcb8fed0
1 changed files with 13 additions and 3 deletions
|
@ -14,7 +14,17 @@ in
|
||||||
persistDirs = [ "/var/lib/tailscale" ];
|
persistDirs = [ "/var/lib/tailscale" ];
|
||||||
sops.secrets."tailscale/client-secret".sopsFile = secrets + "/tailscale.yaml";
|
sops.secrets."tailscale/client-secret".sopsFile = secrets + "/tailscale.yaml";
|
||||||
};
|
};
|
||||||
flake.modules.darwin.default = {
|
flake.modules.darwin.default =
|
||||||
services.tailscale.enable = true;
|
{ pkgs, ... }:
|
||||||
};
|
{
|
||||||
|
services.tailscale = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.tailscale.overrideAttrs {
|
||||||
|
checkFlags = [
|
||||||
|
"-skip"
|
||||||
|
"TestProtocolQEMU|TestProtocolUnixDgram"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue