diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-29 12:22:16 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-29 12:22:16 +0100 |
commit | 7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1 (patch) | |
tree | 352b8004074f89936b1990f202eb6f5bc8866383 /flake | |
parent | fix(modules/xdg): Migrate to the merged xdg-desktop-terminal-filechooser (diff) | |
download | nixos-config-7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1.zip |
fix(modules/nvim/plgs/lf-nvim): Use the package from my nixpgks pr
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 3 | ||||
-rw-r--r-- | flake/default.nix | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index f4a31806..c9586fb8 100644 --- a/flake.nix +++ b/flake.nix @@ -11,6 +11,7 @@ # open nixpkgs prs # FIXME: Close these PRs <2024-09-07> + nixpkgs-lf.url = "github:bpeetz/nixpkgs/init-lf.nvim"; library = { url = "git+https://git.foss-syndicate.org/vhack.eu/nix-library?ref=prime"; @@ -262,6 +263,7 @@ self, nixpkgs, nixpkgs-stable, + nixpkgs-lf, library, # modules home-manager, @@ -300,6 +302,7 @@ nixpkgs_as_input = nixpkgs; nixpkgs_open_prs = { inherit + nixpkgs-lf ; }; diff --git a/flake/default.nix b/flake/default.nix index 90997aa3..39e7d02e 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -66,7 +66,7 @@ }; tests = import ../tests { - inherit pkgs nixpkgs_as_input myPkgs sysLib nixLib; + inherit pkgs nixpkgs_as_input myPkgs sysLib nixLib nixpkgs_open_prs system; inherit (pkgs) lib; extraModules = { nixvim = { |