mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-02-07 06:19:02 +00:00
wrapper-manager-fds/modules: update example for env integration
This commit is contained in:
parent
e74c82fccf
commit
2c8f99cae2
23
modules/env/common.nix
vendored
23
modules/env/common.nix
vendored
@ -57,6 +57,15 @@ in
|
|||||||
"--config" ./config/neofetch/config
|
"--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 = {
|
music-setup = {
|
||||||
@ -66,6 +75,20 @@ in
|
|||||||
"--config-location" ./config/yt-dlp/audio.conf
|
"--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 = {
|
writing = {
|
||||||
|
Loading…
Reference in New Issue
Block a user