1# `_utils.mkVhost` 2`freeformAttrset -> freeformAttrset` 3 4make a virtual host with sensible defaults. 5 6pass in an attrset to override the defaults. the attrset is essentially the same as any virtual host config. 7 8## Example 9```nix 10services.nginx.virtualHosts."balls.example" = _utils.mkVhost {}; 11```