diff options
author | Soispha <soispha@vhack.eu> | 2023-08-19 22:04:19 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-19 22:04:19 +0200 |
commit | a5a4fec94e5b500dfb49e3df71ae2b9be2314063 (patch) | |
tree | 291f0085dd7cee105959f84b8ae1da7427dd5566 /home-manager | |
parent | Fix(hm/conf/gammastep): Adjust laptop temp to redshift night default (diff) | |
download | nixos-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.nix | 6 |
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; |