nixos-config/3modules/logging-config.nix

17 lines
396 B
Nix
Raw Normal View History

2023-06-13 00:28:45 +02:00
{ config, lib, pkgs, stockholm, ... }:
2017-01-09 16:03:26 +01:00
2023-06-13 00:28:45 +02:00
with stockholm.lib;
2017-01-09 16:03:26 +01:00
{
options.makefu.stats-server = lib.mkOption {
type = types.str;
2017-02-05 22:34:16 +01:00
default = "stats.makefu.r";
2017-01-09 16:03:26 +01:00
description = "Central stats server (collectd)";
};
2017-02-05 22:34:16 +01:00
options.makefu.log-server = lib.mkOption {
type = types.str;
default = "logs.makefu.r";
description = "Central logging server (logstash,elasticsearch)";
};
2017-01-09 16:03:26 +01:00
}