Fixed the NixOS module for webdocs, try 2

This commit is contained in:
Felix Krause 2023-09-07 00:13:11 +02:00
parent fcbeb66476
commit 624cbe59b3
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "network.target" ]; after = [ "network.target" ];
serviceConfig.ExecStart = '' serviceConfig.ExecStart = ''
${webdocs}/bin/nimyaml-docs-server --address "${cfg.address}" --port ${ ${webdocs}/bin/nimyaml-docs-server --address="${cfg.address}" --port=${
toString cfg.port toString cfg.port
}''; }'';
}; };