15 lines
178 B
Nix
15 lines
178 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
options,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
config = {
|
||
|
result =
|
||
|
assert config.services.foos == { };
|
||
|
assert !options.services.foo.bar.isDefined;
|
||
|
true;
|
||
|
};
|
||
|
}
|