15 lines
258 B
Nix
15 lines
258 B
Nix
{ config, ... }:
|
|
{
|
|
config = {
|
|
services.foos."".bar = "baz";
|
|
result =
|
|
assert
|
|
config.services.foos == {
|
|
"" = {
|
|
bar = "baz";
|
|
};
|
|
};
|
|
assert config.services.foo.bar == "baz";
|
|
true;
|
|
};
|
|
}
|