wrapper-manager-fds/modules: update common env module documentation

This commit is contained in:
Gabriel Arazas 2024-07-09 23:18:32 +08:00
parent 3b261d85b0
commit d72ffdca9e

View File

@ -49,22 +49,27 @@ in
default = { }; default = { };
example = lib.literalExpression '' example = lib.literalExpression ''
{ {
neofetch = { custom-ricing = {
wrappers.neofetch = {
arg0 = lib.getExe' pkgs.neofetch "neofetch"; arg0 = lib.getExe' pkgs.neofetch "neofetch";
appendArgs = [ appendArgs = [
"--ascii-distro" "guix" "--ascii-distro" "guix"
"--config" ./config/neofetch/config "--config" ./config/neofetch/config
]; ];
}; };
};
yt-dlp-audio = { music-setup = {
wrappers.yt-dlp-audio = {
arg0 = lib.getExe' pkgs.yt-dlp "yt-dlp"; arg0 = lib.getExe' pkgs.yt-dlp "yt-dlp";
prependArgs = [ prependArgs = [
"--config-location" ./config/yt-dlp/audio.conf "--config-location" ./config/yt-dlp/audio.conf
]; ];
}; };
};
asciidoctor-fds = { writing = {
wrappers.asciidoctor-fds = {
arg = lib.getExe' pkgs.asciidoctor-with-extensions "asciidoctor"; arg = lib.getExe' pkgs.asciidoctor-with-extensions "asciidoctor";
executableName = "asciidoctor"; executableName = "asciidoctor";
prependArgs = prependArgs =
@ -73,6 +78,7 @@ in
"asciidoctor-bibtex" "asciidoctor-bibtex"
]; ];
}; };
};
} }
''; '';
}; };