neovim: changes to how we access nvf.lib

This commit is contained in:
ooks-io 2025-01-06 16:27:13 +11:00
parent 7868ac1529
commit 8d9c2a0ed2
39 changed files with 30 additions and 28 deletions

View file

@ -8,7 +8,6 @@
# my scuffed lib
ook-lib = {
builders = import ./builders.nix {inherit self lib inputs;};
mkNeovim = import ./mkNeovim.nix {inherit inputs;};
math = import ./math.nix {inherit lib;};
container = import ./containers.nix {inherit lib config;};
services = import ./services.nix {inherit lib;};

View file

@ -1,12 +0,0 @@
{inputs, ...}: let
inherit (inputs.nvf.lib) neovimConfiguration;
mkNeovim = pkgs: modules:
(neovimConfiguration {
inherit pkgs;
extraSpecialArgs = {inherit inputs;};
inherit modules;
})
.neovim;
in
mkNeovim