stockholm/makefu/3modules/logging-config.nix
2017-02-05 22:34:16 +01:00

17 lines
393 B
Nix

{config, lib, pkgs, ... }:
with import <stockholm/lib>;
{
options.makefu.stats-server = lib.mkOption {
type = types.str;
default = "stats.makefu.r";
description = "Central stats server (collectd)";
};
options.makefu.log-server = lib.mkOption {
type = types.str;
default = "logs.makefu.r";
description = "Central logging server (logstash,elasticsearch)";
};
}