diff options
author | lassulus <lass@lassul.us> | 2017-01-10 14:54:34 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-01-10 14:54:34 +0100 |
commit | 131de9bbd174011e072b116792ce32d8591e7670 (patch) | |
tree | 2d4ebf7a19ce5eab911aea56cced0d18224f54bf /makefu/3modules/logging-config.nix | |
parent | 79cfd8b26f560e0d792a392efdcc7d7a9e1daf1e (diff) | |
parent | a510069d86bd00d9ff348bdad321294cdf42dafb (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/3modules/logging-config.nix')
-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)"; + }; +} + |