summary refs log tree commit diff
path: root/lib/tests/modules/define-attrsOfSub-if-foo-enable.nix
blob: a3fe6051d41fc60305f5114fb95cbf747cd2719e (plain) (blame)
1
2
3
4
5
6
7
{ config, lib, ... }:

{
  attrsOfSub = lib.mkIf config.enable {
    foo.enable = true;
  };
}