nixos-config/3modules/logging-config.nix
2023-06-13 00:28:45 +02:00

17 lines
396 B
Nix

{ config, lib, pkgs, stockholm, ... }:
with 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)";
};
}