9 lines
119 B
Nix
9 lines
119 B
Nix
|
{lib, config, ...}: {
|
||
|
lib.meta.enable = list: lib.genAttrs
|
||
|
list
|
||
|
(name:
|
||
|
${name}.enable = true;
|
||
|
)
|
||
|
;
|
||
|
}
|