mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
901363d1ac
* treewide: refactor custom lib, merge lists in hm/nixos module * lib/types(custom): clarify anythingConcatLists code --------- Co-authored-by: raf <raf@notashelf.dev>
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;
|
|
}
|