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