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
50
modules/env/common.nix
vendored
50
modules/env/common.nix
vendored
@ -49,29 +49,35 @@ in
|
|||||||
default = { };
|
default = { };
|
||||||
example = lib.literalExpression ''
|
example = lib.literalExpression ''
|
||||||
{
|
{
|
||||||
neofetch = {
|
custom-ricing = {
|
||||||
arg0 = lib.getExe' pkgs.neofetch "neofetch";
|
wrappers.neofetch = {
|
||||||
appendArgs = [
|
arg0 = lib.getExe' pkgs.neofetch "neofetch";
|
||||||
"--ascii-distro" "guix"
|
appendArgs = [
|
||||||
"--config" ./config/neofetch/config
|
"--ascii-distro" "guix"
|
||||||
];
|
"--config" ./config/neofetch/config
|
||||||
};
|
|
||||||
|
|
||||||
yt-dlp-audio = {
|
|
||||||
arg0 = lib.getExe' pkgs.yt-dlp "yt-dlp";
|
|
||||||
prependArgs = [
|
|
||||||
"--config-location" ./config/yt-dlp/audio.conf
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
asciidoctor-fds = {
|
|
||||||
arg = lib.getExe' pkgs.asciidoctor-with-extensions "asciidoctor";
|
|
||||||
executableName = "asciidoctor";
|
|
||||||
prependArgs =
|
|
||||||
builtins.map (v: "-r ''${v}") [
|
|
||||||
"asciidoctor-diagram"
|
|
||||||
"asciidoctor-bibtex"
|
|
||||||
];
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
music-setup = {
|
||||||
|
wrappers.yt-dlp-audio = {
|
||||||
|
arg0 = lib.getExe' pkgs.yt-dlp "yt-dlp";
|
||||||
|
prependArgs = [
|
||||||
|
"--config-location" ./config/yt-dlp/audio.conf
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
writing = {
|
||||||
|
wrappers.asciidoctor-fds = {
|
||||||
|
arg = lib.getExe' pkgs.asciidoctor-with-extensions "asciidoctor";
|
||||||
|
executableName = "asciidoctor";
|
||||||
|
prependArgs =
|
||||||
|
builtins.map (v: "-r ''${v}") [
|
||||||
|
"asciidoctor-diagram"
|
||||||
|
"asciidoctor-bibtex"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user