nix-files/hosts/common/programs/notejot.nix
2024-04-09 15:44:01 +00:00

14 lines
361 B
Nix

{ ... }:
{
sane.programs.notejot = {
sandbox.method = "bwrap";
sandbox.whitelistWayland = true;
sandbox.extraPaths = [ ".config/dconf" ]; #< for legacy notes (moby), loaded via dconf
suggestedPrograms = [ "dconf" ]; #< else it can't persist notes
persist.byStore.private = [
".local/share/io.github.lainsce.Notejot"
];
};
}