1{ lib, ... }:
2let
3 myconf = lib.evalModules { modules = [ { } ]; };
4in
5{
6 imports = [
7 # We can't do this. A configuration is not equal to its set of a modules.
8 # Equating those would lead to a mess, as specialArgs, anonymous modules
9 # that can't be deduplicated, and possibly more come into play.
10 myconf
11 ];
12}