Files
nix-files/hosts/common/programs/handbrake.nix
2024-10-08 18:22:54 +00:00

18 lines
365 B
Nix

{ ... }:
{
sane.programs.handbrake = {
buildCost = 1;
sandbox.whitelistDbus = [ "user" ]; # notifications
sandbox.whitelistWayland = true;
sandbox.extraHomePaths = [
"Music"
"Pictures/from" # e.g. videos filmed from my phone
"Videos/local"
"Videos/servo"
"tmp"
];
sandbox.autodetectCliPaths = true;
};
}