18 lines
365 B
Nix
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;
|
|
};
|
|
}
|