about summary refs log tree commit diff stats
path: root/home-manager
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-19 22:04:19 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 22:04:19 +0200
commita5a4fec94e5b500dfb49e3df71ae2b9be2314063 (patch)
tree291f0085dd7cee105959f84b8ae1da7427dd5566 /home-manager
parentFix(hm/conf/gammastep): Adjust laptop temp to redshift night default (diff)
downloadnixos-config-a5a4fec94e5b500dfb49e3df71ae2b9be2314063.tar.gz
nixos-config-a5a4fec94e5b500dfb49e3df71ae2b9be2314063.zip
Fix(hm/conf/lf/commands): Remove non-wrapped neovim dependency
Diffstat (limited to '')
-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;