about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--home-manager/soispha/config/lf/commands/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/home-manager/soispha/config/lf/commands/default.nix b/home-manager/soispha/config/lf/commands/default.nix
index 67362fd0..c60b0039 100644
--- a/home-manager/soispha/config/lf/commands/default.nix
+++ b/home-manager/soispha/config/lf/commands/default.nix
@@ -149,14 +149,14 @@ in {
   };
   mk_scr_default = shell {
     file = ./scripts/mk_scr_default;
-    dependencies = builtins.attrValues {inherit (pkgs) neovim;};
+    dependencies = builtins.attrValues {};
     replacementStrings = {
       SHELL_LIBRARY_TEMPLATE = "${shell_library.rawTemplate."${system}"}";
     };
   };
   mk_scr_temp = shell {
     file = ./scripts/mk_scr_temp;
-    dependencies = builtins.attrValues {inherit (pkgs) neovim;};
+    dependencies = builtins.attrValues {};
     replacementStrings = {
       SHELL_LIBRARY_TEMPLATE = "${shell_library.rawTemplate."${system}"}";
       TO_BE_SHELL_LIBRARY_PATH = "%SHELL_LIBRARY_PATH"; # replacement is not recursive
@@ -164,7 +164,7 @@ in {
   };
   open = shell {
     file = ./scripts/open;
-    dependencies = builtins.attrValues {inherit (pkgs) file xdg-utils neovim git;};
+    dependencies = builtins.attrValues {inherit (pkgs) file xdg-utils;};
   };
   open_config = shell {
     file = ./scripts/open_config;