all repos — nix-packages @ fa0ffd25e45eefa41121bf80fcdbdf512906abbb

My personal collection of packages for nix

reformat all

Alan Pearce
commit

fa0ffd25e45eefa41121bf80fcdbdf512906abbb

parent

a19e604102752842402fab33704b6a26ef73bd47

1 file changed, 14 insertions(+), 3 deletions(-)

changed files
M modules/darwin/caddy/vhost-options.nixmodules/darwin/caddy/vhost-options.nix
@@ -1,5 +1,10 @@
{ cfg }: -{ config, lib, name, ... }: +{ + config, + lib, + name, + ... +}: let inherit (lib) literalExpression mkOption types; in
@@ -15,7 +20,10 @@
serverAliases = mkOption { type = with types; listOf str; default = [ ]; - example = [ "www.example.org" "example.org" ]; + example = [ + "www.example.org" + "example.org" + ]; description = '' Additional names of virtual hosts served by this virtual host configuration. '';
@@ -27,7 +35,10 @@ description = ''
A list of host interfaces to bind to for this virtual host. ''; default = [ ]; - example = [ "127.0.0.1" "::1" ]; + example = [ + "127.0.0.1" + "::1" + ]; }; useACMEHost = mkOption {