diff options
author | makefu <github@syntax-fehler.de> | 2017-01-09 16:03:26 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-01-09 16:03:26 +0100 |
commit | 66c1ef89b7e950105ddbd918f1900f5625c08c7b (patch) | |
tree | fa7f2d3dfbfa0e699a13d788361f39b4c75cb383 /makefu/3modules | |
parent | eb208085f011aa48bae73b98caa1f4fccae74ab6 (diff) |
m 3 logging-config: init
Diffstat (limited to 'makefu/3modules')
-rw-r--r-- | makefu/3modules/logging-config.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/makefu/3modules/logging-config.nix b/makefu/3modules/logging-config.nix new file mode 100644 index 000000000..cd6924f61 --- /dev/null +++ b/makefu/3modules/logging-config.nix @@ -0,0 +1,11 @@ +{config, lib, pkgs, ... }: + +with import <stockholm/lib>; +{ + options.makefu.stats-server = lib.mkOption { + type = types.str; + default = "omo.retiolum"; + description = "Central stats server (collectd)"; + }; +} + |