mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 05:50:11 +01:00
19 lines
319 B
Nix
19 lines
319 B
Nix
|
|
{
|
||
|
|
inputs,
|
||
|
|
lib,
|
||
|
|
}: let
|
||
|
|
modulesWithInputs = import ../modules inputs;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
modules ? [],
|
||
|
|
pkgs,
|
||
|
|
check ? true,
|
||
|
|
extraSpecialArgs ? {},
|
||
|
|
extraModules ? [],
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
modulesWithInputs {
|
||
|
|
inherit pkgs lib check extraSpecialArgs extraModules;
|
||
|
|
configuration.imports = modules;
|
||
|
|
}
|