flake/meta/enable.nix

8 lines
110 B
Nix
Raw Normal View History

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