1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 08:29:20 +03:00
nixpkgs/lib/tests/modules/doRename-condition-no-enable.nix

10 lines
165 B
Nix
Raw Normal View History

{ config, options, ... }:
{
config = {
result =
assert config.services.foos == { };
assert !options.services.foo.bar.isDefined;
true;
};
}