fix linux-builder ccache

This commit is contained in:
mjallen18
2025-12-22 15:28:42 -06:00
parent 53a2d01a83
commit 7d92e9b1cc

View File

@@ -32,11 +32,19 @@
};
nix = {
linux-builder.enable = true;
linux-builder = {
enable = true;
config = ({ pkgs, ... }:
{
systemd.tmpfiles.rules = [
"d /var/cache/ccache 0770 root nixbld -"
];
});
};
};
nix-rosetta-builder = {
enable = true;
enable = false;
onDemand = true;
};
}