core/lib/tests/modules/doRename-condition-no-enable.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
178 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{
config,
lib,
options,
...
}:
{
config = {
result =
assert config.services.foos == { };
assert !options.services.foo.bar.isDefined;
true;
};
}