enable ccache

This commit is contained in:
Dmitriy Kholkin 2024-07-16 14:50:57 +03:00 committed by Dmitriy
parent 8eab6d8682
commit 3ed8cb071a
2 changed files with 29 additions and 1 deletions

View File

@ -17,7 +17,7 @@
customProfiles.wine-games
customProfiles.ollama
];
customProfiles.ccache
security.pki.certificateFiles = [ ../../misc/mitmproxy-ca-cert.pem ];

28
profiles/ccache.nix Normal file
View File

@ -0,0 +1,28 @@
{ config, lib, ... }: {
programs.ccache = {
enable = true;
cacheDir = "/var/lib/ccache";
# packageNames = [ "grub2" ];
};
nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ];
persist.state.directories = lib.mkIf (config.deviceSpecific.devInfo.fileSystem != "zfs") [
config.programs.ccache.cacheDir
];
nixpkgs.overlays = [
(final: prev: {
ccacheWrapper = prev.ccacheWrapper.override {
# export CCACHE_SLOPPINESS=random_seed,pch_defines,time_macros,include_file_mtime,include_file_ctime
extraConfig = ''
export CCACHE_NOCOMPRESS=true
export CCACHE_MAXSIZE=15G
export CCACHE_DIR="${config.programs.ccache.cacheDir}"
export CCACHE_UMASK=007
export CCACHE_SLOPPINESS=random_seed
export CCACHE_BASEDIR=$NIX_BUILD_TOP
'';
};
})
];
}