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.
10 lines
196 B
Nix
10 lines
196 B
Nix
{ config, lib, ... }:
|
|
{
|
|
config = {
|
|
services.foo.enable = true;
|
|
services.foo.bar = "baz";
|
|
result =
|
|
assert config.services.foos == { "" = { bar = "baz"; }; };
|
|
true;
|
|
};
|
|
}
|