Skip to content

Notif

Notif is a service that configures "Connect" notifications in each Starr service.

Available Options

This page documents 2 configuration options.

nixflix.notif.enable

Whether to enable Notif.

Typeboolean
Default
true
Declared inmodules/notif/options.nix

nixflix.notif.extraNotifications

For more notification types, or if you have more than one instance of a specific type. Follows the same general schema as the other options. implementationName and services are required fields.

A list of implementation names can be acquired with:

curl -s -H "X-Api-Key: $(sudo cat </path/to/sonarr/api_key>)" "http://127.0.0.1:8989/api/v3/notification/schema" | jq '.[].implementationName'

You can run the following command to get the field names for a particular implementationName:

curl -s -H "X-Api-Key: $(sudo cat </path/to/sonarr/api_key>)" "http://127.0.0.1:8989/api/v3/notification/schema" | jq '.[] | select(.implementationName=="<implementationName>") | .fields'
Typelist of attribute set of anything
Default
[ ]
Declared inmodules/notif/options.nix