diff options
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)"; + }; +} + |