aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-20 21:40:00 +0200
committerSoispha <soispha@vhack.eu>2023-08-20 21:40:00 +0200
commit66928b32289cfd95c8170b4c8b1e778d5c3601ea (patch)
treeddbe11e5acb0d6a4f97b4f63b9126200c7318b50 /home-manager
parentFeat(hm/conf/lf): Replace rename script by rename c binary (diff)
downloadnixos-config-66928b32289cfd95c8170b4c8b1e778d5c3601ea.zip
Fix(hm/conf/lf/commands): Avoid shell wrapping for c rename command
Diffstat (limited to '')
-rw-r--r--home-manager/soispha/config/lf/commands/default.nix9
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 = [];