1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-17 22:12:55 +01:00
neovim-flake/lib/configuration.nix
diniamo 901363d1ac
treewide: refactor custom lib, merge lists in hm/nixos module ()
* treewide: refactor custom lib, merge lists in hm/nixos module

* lib/types(custom): clarify anythingConcatLists code

---------

Co-authored-by: raf <raf@notashelf.dev>
2024-07-11 22:49:44 +00:00

18 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;
}