Use the home-manager option for yt-dlp

This commit is contained in:
Andreas Zweili 2022-12-19 17:22:43 +01:00
parent 8d4d7da856
commit 6567a951fb
2 changed files with 12 additions and 1 deletions

View File

@ -26,6 +26,7 @@
"${custom.inputs.self}/home-manager/software/telegram"
"${custom.inputs.self}/home-manager/software/vim"
"${custom.inputs.self}/home-manager/software/work-desktop"
"${custom.inputs.self}/home-manager/software/yt-dlp"
];
home.packages = with pkgs; [
arc-theme
@ -41,7 +42,6 @@
shotwell
sound-juicer
unstable.tagger
yt-dlp
];
programs.git.userEmail = "andreas@zweili.ch";

View File

@ -0,0 +1,11 @@
{ ... }: {
programs.yt-dlp = {
enable = true;
extraConfig = ''
-S "+codec:h264"
'';
settings = {
remux-video = "mkv";
};
};
}