mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
29c7665003
This is to support single-to-multi service migrations, so that the `to` (e.g. `foos.""`) isn't defined unconditionally. See test cases.
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;
|
|
};
|
|
}
|