mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-20 01:56:47 +02:00
9 lines
149 B
Nix
9 lines
149 B
Nix
|
{ lib ? import ../.., modules ? [] }:
|
||
|
|
||
|
{
|
||
|
inherit (lib.evalModules {
|
||
|
inherit modules;
|
||
|
specialArgs.modulesPath = ./.;
|
||
|
}) config options;
|
||
|
}
|