This commit is contained in:
2025-08-10 11:51:32 +03:00
parent dc897b006d
commit 816576a2de
2 changed files with 23 additions and 0 deletions
+1
View File
@@ -5,5 +5,6 @@
imports = [
./gramps.nix
./streamrip.nix
./yt-dlp.nix
];
}
+22
View File
@@ -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
];
}