From 4cc1709ffba322def679ee8c24be9fd95678b265 Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 11 Mar 2023 23:11:04 +0100 Subject: Fix(hm/conf/lf): Remove the exec These should not be needed, but have the potential to make other things not work. --- home-manager/config/lf/default.nix | 8 ++++---- 1 file 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 { -- cgit 1.4.1