6 lines
89 B
Nix
6 lines
89 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
{
|
||
|
attrsOfSub.foo = lib.mkIf config.enable { enable = true; };
|
||
|
}
|