[extra/media] replace youtube-dl with yt-dlp

This commit is contained in:
Felix Buehler 2021-11-30 23:14:28 +01:00
parent 2147a547a2
commit 216249ab8b

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
let
yt-dlp = pkgs.yt-dlp.override {
withAlias = true;
};
in
{
environment.systemPackages = with pkgs; [
audacity
@ -19,6 +24,6 @@
projectm
shotwell
soundkonverter
youtube-dl
yt-dlp
];
}