nix-files/hosts/common/programs/notejot.nix
2024-02-18 07:07:29 +00:00

16 lines
342 B
Nix

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