about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-11 23:11:04 +0100
committerene <ene@sils.li>2023-03-11 23:11:04 +0100
commit4cc1709ffba322def679ee8c24be9fd95678b265 (patch)
treea18caffa494950b6f6097f674858ebbc2981e0df
parentFix(hm/conf/lf): Add coreutils to the cmd deps (diff)
downloadnixos-config-4cc1709ffba322def679ee8c24be9fd95678b265.tar.gz
nixos-config-4cc1709ffba322def679ee8c24be9fd95678b265.zip
Fix(hm/conf/lf): Remove the exec
These should not be needed, but have the potential to make other things
not work.
-rw-r--r--home-manager/config/lf/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/home-manager/config/lf/default.nix b/home-manager/config/lf/default.nix
index ffd3b3ed..7b9861eb 100644
--- a/home-manager/config/lf/default.nix
+++ b/home-manager/config/lf/default.nix
@@ -21,7 +21,7 @@
     ...
   }: ''
     ''${{
-      exec ${functionCall {inherit file dependencies;}}
+      ${functionCall {inherit file dependencies;}}
     }}
   ''; # closes the lf tui
   pipe = {
@@ -30,7 +30,7 @@
     ...
   }: ''
     %{{
-      exec ${functionCall {inherit file dependencies;}}
+      ${functionCall {inherit file dependencies;}}
     }}
   ''; # runs the command in the ui/term bar
   async = {
@@ -39,7 +39,7 @@
     ...
   }: ''
     &{{
-      exec ${functionCall {inherit file dependencies;}}
+      ${functionCall {inherit file dependencies;}}
     }}
   ''; # runs the command in the background
   wait = {
@@ -48,7 +48,7 @@
     ...
   }: ''
     !{{
-      exec ${functionCall {inherit file dependencies;}}
+      ${functionCall {inherit file dependencies;}}
     }}
   ''; # adds a prompt after the command has run
 in {