legacy/media: remove variable

This commit is contained in:
Felix Buehler 2023-03-19 15:31:26 +01:00
parent 9eb4bc1e5e
commit ecf335add5

View file

@ -1,9 +1,4 @@
{ config, lib, pkgs, ... }:
let
yt-dlp = pkgs.yt-dlp.override {
withAlias = true;
};
in
{
environment.systemPackages = with pkgs; [
audacity # audio editing
@ -28,6 +23,8 @@ in
shotwell # photo management
sonixd # cloud-music-player
soundkonverter # audio converter
yt-dlp # videao download
(yt-dlp.override {
withAlias = true;
}) # video download
];
}