Files
nix-config/modules/nixos/nix/ccache/default.nix.ori
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

53 lines
932 B
Plaintext
Executable File

{ ... }:
{
imports = [ ./overlays.nix ];
programs.ccache = {
enable = true;
packageNames = [
"bcachefs"
"bcachefs-tools"
"dolphin-emu"
"ffmpeg"
"ffmpeg_8"
"ffmpeg_7"
"ffmpeg_6"
"ffmpeg-full"
"ffmpeg-headless"
"gamescope"
"gjs"
"gst-plugins-bad"
"gst-plugins-rs"
"gtk4"
"hipblaslt"
"jemalloc"
"jupiter-fan-control"
"libcamera-rpi"
"libsecret"
"linux"
"mesa"
"mesa_i686"
"mesa-radeonsi-jupiter"
"mesa-radv-jupiter"
"mgba"
"orca-slicer"
"opencv"
"opencv4"
"opencv4WithoutCuda"
# "pipewire"
"qemu"
"qemu_kvm"
"qemu_full"
"qemu-host-cpu-only"
"qt3d"
"qtdeclarative"
"qtmultimedia"
"ryubing"
"sdl"
"sdl2"
"sdl3"
"webkitgtk"
];
cacheDir = "/var/cache/ccache";
};
}