Files
nix-files/hosts/common/programs/celeste64.nix
Colin 3fc6571294 programs: don't persist mesaCacheDir by default
and explicitly add it to every program that uses mesa.

wow, that's a *lot*
2025-01-02 05:36:19 +00:00

20 lines
403 B
Nix

{ ... }:
{
sane.programs.celeste64 = {
buildCost = 1;
sandbox.whitelistAudio = true;
sandbox.whitelistDri = true;
sandbox.whitelistWayland = true;
sandbox.extraPaths = [
"/dev/input" #< for controllers
];
persist.byStore.plaintext = [
# save data, controls map
".local/share/Celeste64"
];
sandbox.mesaCacheDir = ".cache/Celeste64/mesa";
};
}