This commit is contained in:
2025-05-05 23:05:13 +02:00
parent 82ec09c4fb
commit 015124621d

View File

@@ -16,17 +16,17 @@
programs.nix-required-mounts.allowedPatterns."ccache" = {
onFeatures = [
"ccache"
# "sccache"
"sccache"
];
paths = [
config.programs.ccache.cacheDir
# "/var/cache/sccache"
"/var/cache/sccache"
];
};
nix.settings.system-features = [
"ccache"
# "sccache"
"sccache"
];
systemd.tmpfiles.settings."50-ccache" =
let
@@ -41,7 +41,7 @@
in
{
"/var/cache/ccache" = tmp;
# "/var/cache/sccache" = tmp;
"/var/cache/sccache" = tmp;
};
}