This commit is contained in:
2025-08-07 17:27:10 +03:00
parent e4e7d8637d
commit c4cd1284b3
3 changed files with 24 additions and 0 deletions
+1
View File
@@ -4,5 +4,6 @@
{
imports = [
./gramps.nix
./streamrip.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.streamrip
];
}