18 lines
498 B
Nix
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
|
|
};
|
|
}
|