flake/meta/enable.nix

9 lines
119 B
Nix
Raw Permalink Normal View History

2024-09-01 00:06:13 +02:00
{lib, config, ...}: {
lib.meta.enable = list: lib.genAttrs
list
(name:
${name}.enable = true;
)
;
}