Files
nix-files/hosts/common/programs/planify.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

18 lines
498 B
Nix

{ ... }:
{
sane.programs.planify = {
sandbox.whitelistWayland = true;
sandbox.mesaCacheDir = ".cache/io.github.alainm23/mesa";
persist.byStore.private = [
# todo items as a sqlite database
".local/share/io.github.alainm23.planify"
];
# TODO: can probably configure gsettings statically?
# but until then it needs this to not lose its notes
gsettingsPersist = [ "io/github/alainm23/planify" ];
buildCost = 2; # webkitgtk-6.0; slow for desktop
};
}