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

20 lines
366 B
Nix

{ ... }:
{
sane.programs.inkscape = {
buildCost = 1;
sandbox.whitelistWayland = true;
sandbox.extraHomePaths = [
"Pictures/albums"
"Pictures/cat"
"Pictures/from"
"Pictures/Photos"
"Pictures/Screenshots"
"Pictures/servo-macros"
"dev"
"ref"
"tmp"
];
sandbox.autodetectCliPaths = true;
};
}