Move customVim plugins into an overlay
This commit is contained in:
parent
8059264ca9
commit
6bc7c6a5fd
3 changed files with 87 additions and 83 deletions
|
|
@ -4,12 +4,12 @@
|
|||
nixpkgs-2305.url = "github:NixOS/nixpkgs/nixos-23.05";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, ... }@inputs:
|
||||
outputs = { nixpkgs, self, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
|
||||
lib = import ./lib { inherit inputs; };
|
||||
lib = import ./lib { inherit inputs self; };
|
||||
|
||||
inherit (lib) mkNeovim mkVimPlugin;
|
||||
inherit (pkgs) mkShell;
|
||||
|
|
|
|||
Reference in a new issue