mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 12:16:32 +03:00
23 lines
337 B
Nix
23 lines
337 B
Nix
{
|
|
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
|
|
];
|
|
}
|