services.taskserver.config
NixOS option
Configuration options to pass to Taskserver. The options here are the same as described in taskdrc(5) from the taskwarrior2 package, 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.
type: attribute setDefault
{ }Example
declared in: nixos/modules/services/misc/taskserverView source on NixOS/nixpkgs →{
client = {
cert = "/tmp/debugging.cert";
};
}