about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-29 12:22:16 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-29 12:22:16 +0100
commit7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1 (patch)
tree352b8004074f89936b1990f202eb6f5bc8866383 /modules
parentfix(modules/xdg): Migrate to the merged xdg-desktop-terminal-filechooser (diff)
downloadnixos-config-7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1.zip
fix(modules/nvim/plgs/lf-nvim): Use the package from my nixpgks pr
Diffstat (limited to 'modules')
-rw-r--r--modules/by-name/nv/nvim/plgs/lf-nvim/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/by-name/nv/nvim/plgs/lf-nvim/default.nix b/modules/by-name/nv/nvim/plgs/lf-nvim/default.nix
index 5e2836b0..1e7c91e3 100644
--- a/modules/by-name/nv/nvim/plgs/lf-nvim/default.nix
+++ b/modules/by-name/nv/nvim/plgs/lf-nvim/default.nix
@@ -2,6 +2,8 @@
   pkgs,
   lib,
   config,
+  nixpkgs_open_prs,
+  system,
   ...
 }: let
   cfg = config.soispha.programs.nvim;
@@ -13,7 +15,7 @@ in {
       ${lib.strings.fileContents ./lua/lf-nvim.lua}
     '';
     extraPlugins = [
-      pkgs.vimExtraPlugins.lf-nvim
+      nixpkgs_open_prs.nixpkgs-lf.legacyPackages."${system}".vimPlugins.lf-nvim
 
       pkgs.vimPlugins.toggleterm-nvim # required by lf-nvim
     ];