1{ config, ... }: 2{ 3 config = { 4 services.foos."".bar = "baz"; 5 result = 6 assert 7 config.services.foos == { 8 "" = { 9 bar = "baz"; 10 }; 11 }; 12 assert config.services.foo.bar == "baz"; 13 true; 14 }; 15}