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