From 816576a2de02003dc6eb4bb93516927ee99a5940 Mon Sep 17 00:00:00 2001 From: oqyude Date: Sun, 10 Aug 2025 11:51:32 +0300 Subject: [PATCH] 123 --- homeConfigurations/wsl-apps/default.nix | 1 + homeConfigurations/wsl-apps/yt-dlp.nix | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 homeConfigurations/wsl-apps/yt-dlp.nix 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 + ]; +}