diff options
author | ene <ene@sils.li> | 2023-03-11 23:11:04 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-11 23:11:04 +0100 |
commit | 4cc1709ffba322def679ee8c24be9fd95678b265 (patch) | |
tree | a18caffa494950b6f6097f674858ebbc2981e0df /home-manager/config | |
parent | Fix(hm/conf/lf): Add coreutils to the cmd deps (diff) | |
download | nixos-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.
Diffstat (limited to 'home-manager/config')
-rw-r--r-- | home-manager/config/lf/default.nix | 8 |
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 { |