nixos/pkgs/nixvim/package.nix

14 lines
270 B
Nix
Raw Normal View History

{
makeNixvimWithModule,
pkgs,
lib,
}:
makeNixvimWithModule {
inherit pkgs;
module = {
imports = with lib; youthlic.loadImports' ./. (filter (name: !hasSuffix "/package.nix" (toString name)));
enableMan = true;
plugins.lualine.enable = true;
};
}