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