MyNixOS website logo
option

services.taskserver.config

Configuration options to pass to Taskserver.

The options here are the same as described in taskdrc(5), but with one difference:

The server option is server.listen here, because the server option would collide with other options like server.cert and we would run in a type error (attribute set versus string).

Nix types like integers or booleans are automatically converted to the right values Taskserver would expect.

Declarations
Type
attribute set
Example
{
  client = {
    cert = "/tmp/debugging.cert";
  };
}