summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/doRename-condition-no-enable.nix
blob: c2129d558f6a93d0139bce1128ceea5d9496332f (plain)
1
2
3
4
5
6
7
8
9
{ config, options, ... }:
{
  config = {
    result =
      assert config.services.foos == { };
      assert !options.services.foo.bar.isDefined;
      true;
  };
}