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

15 lines
437 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-05-28 03:59:31 +00:00
sandbox.whitelistDri = true; #< otherwise intolerably slow on moby
sandbox.extraHomePaths = [ ".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"
];
};
}