mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
7 lines
122 B
Nix
7 lines
122 B
Nix
{ lib ? import <nixpkgs/lib>, modules ? [] }:
|
|
|
|
{
|
|
inherit (lib.evalModules {
|
|
inherit modules;
|
|
}) config options;
|
|
}
|