diff --git a/homeConfigurations/wsl-apps/default.nix b/homeConfigurations/wsl-apps/default.nix index 1914d9a..085760f 100644 --- a/homeConfigurations/wsl-apps/default.nix +++ b/homeConfigurations/wsl-apps/default.nix @@ -5,5 +5,6 @@ imports = [ ./gramps.nix ./streamrip.nix + ./yt-dlp.nix ]; } diff --git a/homeConfigurations/wsl-apps/yt-dlp.nix b/homeConfigurations/wsl-apps/yt-dlp.nix new file mode 100644 index 0000000..6cee5c4 --- /dev/null +++ b/homeConfigurations/wsl-apps/yt-dlp.nix @@ -0,0 +1,22 @@ +{ + config, + pkgs, + xlib, + ... +}: +let + streamripPath = "${xlib.dirs.wsl-storage}/streamrip"; +in +{ + # xdg = { + # configFile = { + # "streamrip" = { + # source = config.lib.file.mkOutOfStoreSymlink streamripPath; + # target = "streamrip"; + # }; + # }; + # }; + home.packages = [ + pkgs.yt-dlp-light + ]; +}