12 lines
219 B
Nix
12 lines
219 B
Nix
{config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
{
|
|
options.makefu.stats-server = lib.mkOption {
|
|
type = types.str;
|
|
default = "omo.retiolum";
|
|
description = "Central stats server (collectd)";
|
|
};
|
|
}
|
|
|