1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-06 22:29:49 +01:00
neovim-flake/lib/configuration.nix

19 lines
319 B
Nix
Raw Normal View History

{
inputs,
lib,
}: let
modulesWithInputs = import ../modules inputs;
in
{
modules ? [],
pkgs,
check ? true,
extraSpecialArgs ? {},
extraModules ? [],
...
}:
modulesWithInputs {
inherit pkgs lib check extraSpecialArgs extraModules;
configuration.imports = modules;
}