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

14 lines
396 B
Nix

{ ... }:
{
sane.programs.notejot = {
sandbox.whitelistWayland = true;
sandbox.whitelistDri = true; #< otherwise intolerably slow on moby
gsettingsPersist = [ "io/github/lainsce/Notejot" ]; #< TODO: probably not needed
sandbox.mesaCacheDir = ".cache/io.github.lainsce.Notejot/mesa";
persist.byStore.private = [
".local/share/io.github.lainsce.Notejot"
];
};
}