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

13 lines
269 B
Nix

{ ... }:
{
sane.programs.notejot = {
sandbox.method = "bwrap";
sandbox.whitelistWayland = true;
suggestedPrograms = [ "dconf" ]; #< else it can't persist notes
persist.byStore.private = [
".local/share/io.github.lainsce.Notejot"
];
};
}