diff options
author | Soispha <soispha@vhack.eu> | 2023-08-20 21:40:00 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-20 21:40:00 +0200 |
commit | 66928b32289cfd95c8170b4c8b1e778d5c3601ea (patch) | |
tree | ddbe11e5acb0d6a4f97b4f63b9126200c7318b50 /home-manager/soispha/config/lf | |
parent | Feat(hm/conf/lf): Replace rename script by rename c binary (diff) | |
download | nixos-config-66928b32289cfd95c8170b4c8b1e778d5c3601ea.zip |
Fix(hm/conf/lf/commands): Avoid shell wrapping for c rename command
Diffstat (limited to 'home-manager/soispha/config/lf')
-rw-r--r-- | home-manager/soispha/config/lf/commands/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/home-manager/soispha/config/lf/commands/default.nix b/home-manager/soispha/config/lf/commands/default.nix index 95cd2991..9eba1a98 100644 --- a/home-manager/soispha/config/lf/commands/default.nix +++ b/home-manager/soispha/config/lf/commands/default.nix @@ -197,10 +197,11 @@ in { file = ./scripts/set_wall_paper; dependencies = []; }; - rename = pipe { - file = "${lf_rename.packages."${system}".default}"; - dependencies = []; - }; + rename = '' + %{{ + ${lf_rename.packages."${system}".default}/bin/rename + }} + ''; stripspace = pipe { file = ./scripts/stripspace; dependencies = []; |