at 24.11-pre 196 B view raw
1{ config, lib, ... }: 2{ 3 config = { 4 services.foo.enable = true; 5 services.foo.bar = "baz"; 6 result = 7 assert config.services.foos == { "" = { bar = "baz"; }; }; 8 true; 9 }; 10}