nix-files/hosts/common/programs/notejot.nix

14 lines
361 B
Nix
Raw Normal View History

2023-12-12 07:31:00 +00:00
{ ... }:
{
sane.programs.notejot = {
2024-02-18 06:28:46 +00:00
sandbox.method = "bwrap";
sandbox.whitelistWayland = true;
2024-04-09 15:44:01 +00:00
sandbox.extraPaths = [ ".config/dconf" ]; #< for legacy notes (moby), loaded via dconf
suggestedPrograms = [ "dconf" ]; #< else it can't persist notes
2024-02-18 06:28:46 +00:00
2023-12-12 07:37:52 +00:00
persist.byStore.private = [
2023-12-12 07:31:00 +00:00
".local/share/io.github.lainsce.Notejot"
];
};
}