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

13 lines
328 B
Nix

{ ... }:
{
sane.programs.notejot = {
sandbox.whitelistWayland = true;
sandbox.whitelistDri = true; #< otherwise intolerably slow on moby
gsettingsPersist = [ "io/github/lainsce/Notejot" ]; #< TODO: probably not needed
persist.byStore.private = [
".local/share/io.github.lainsce.Notejot"
];
};
}