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

15 lines
178 B
Nix
Raw Normal View History

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