mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 20:50:47 +03:00
23 lines
318 B
Nix
23 lines
318 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.streamrip
|
|
];
|
|
}
|