programs/yt-dlp: migrate to own file

This commit is contained in:
2024-09-08 21:51:23 +00:00
parent 1067bc9215
commit 6dc4aeafc1
3 changed files with 9 additions and 4 deletions

View File

@@ -1267,10 +1267,6 @@ in
xterm.sandbox.enable = false; # need to be able to do everything
yarn.persist.byStore.plaintext = [ ".cache/yarn" ];
yt-dlp.sandbox.method = "bunpen";
yt-dlp.sandbox.net = "all";
yt-dlp.sandbox.whitelistPwd = true; # saves to pwd by default
};
sane.persist.sys.byStore.plaintext = lib.mkIf config.sane.programs.guiApps.enabled [

View File

@@ -198,6 +198,7 @@
./xdg-terminal-exec.nix
./xdg-utils.nix
./youtube-tui.nix
./yt-dlp.nix
./zathura.nix
./zeal.nix
./zecwallet-lite.nix

View File

@@ -0,0 +1,8 @@
{ ... }:
{
sane.programs.yt-dlp = {
sandbox.method = "bunpen";
sandbox.net = "all";
sandbox.whitelistPwd = true; # saves to pwd by default
};
}