wrapper-manager-fds/modules: update example for env integration

This commit is contained in:
Gabriel Arazas 2024-07-10 15:45:04 +08:00
parent da6c75a510
commit 6c6ae7ecd6
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -57,6 +57,15 @@ in
"--config" ./config/neofetch/config
];
};
wrappers.fastfetch = {
arg0 = lib.getExe' pkgs.fastfetch "fastfetch";
appendArgs = [
"--config" ./config/fastfetch/config
"--logo" "Guix"
];
env.NO_COLOR = 1;
};
};
music-setup = {
@ -66,6 +75,20 @@ in
"--config-location" ./config/yt-dlp/audio.conf
];
};
wrappers.yt-dlp-video = {
arg0 = lib.getExe' pkgs.yt-dlp "yt-dlp";
prependArgs = [
"--config-location" ./config/yt-dlp/video.conf
];
};
wrappers.beets-fds = {
arg0 = lib.getExe' pkgs.beet "beet";
prependArgs = [
"--config" ./config/beets/config
];
};
};
writing = {