mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
wrapper-manager-fds/modules: update common env module documentation
This commit is contained in:
parent
3b261d85b0
commit
d72ffdca9e
12
modules/env/common.nix
vendored
12
modules/env/common.nix
vendored
@ -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"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user