From 216249ab8b582c4a4c85460f40dffba5d19c7892 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Tue, 30 Nov 2021 23:14:28 +0100 Subject: [PATCH] [extra/media] replace youtube-dl with yt-dlp --- extra/media.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extra/media.nix b/extra/media.nix index bb229de..37a5b88 100644 --- a/extra/media.nix +++ b/extra/media.nix @@ -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 ]; }