60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
10 lines
215 B
Nix
10 lines
215 B
Nix
{ config, lib, ... }:
|
|
{
|
|
config = {
|
|
services.foos."".bar = "baz";
|
|
result =
|
|
assert config.services.foos == { "" = { bar = "baz"; }; };
|
|
assert config.services.foo.bar == "baz";
|
|
true;
|
|
};
|
|
}
|