Karma dashboard configuration as nix attributes.
Reference: https://github.com/prymitive/karma/blob/main/docs/CONFIGURATION.md.
Declarations
Type
YAML value
Default
{
listen = {
address = "127.0.0.1";
};
}
Example
{
alertmanager = {
interval = "15s";
servers = [
{
name = "prod";
uri = "http://alertmanager.example.com";
}
];
};
listen = {
address = "192.168.1.4";
port = "8000";
prefix = "/dashboard";
};
}