60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
9 lines
171 B
Nix
9 lines
171 B
Nix
{ config, lib, options, ... }:
|
|
{
|
|
config = {
|
|
result =
|
|
assert config.services.foos == { };
|
|
assert ! options.services.foo.bar.isDefined;
|
|
true;
|
|
};
|
|
}
|