From 6c6ae7ecd62f91ac8b25bee010465d8a4dc7b411 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 10 Jul 2024 15:45:04 +0800 Subject: [PATCH] wrapper-manager-fds/modules: update example for env integration --- .../modules/env/common.nix | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/subprojects/wrapper-manager-fds/modules/env/common.nix b/subprojects/wrapper-manager-fds/modules/env/common.nix index eba894cd..debfdfc3 100644 --- a/subprojects/wrapper-manager-fds/modules/env/common.nix +++ b/subprojects/wrapper-manager-fds/modules/env/common.nix @@ -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 = {