diff options
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/monitoring.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nixos/modules/monitoring.nix b/nixos/modules/monitoring.nix index 2660461..e08ae14 100644 --- a/nixos/modules/monitoring.nix +++ b/nixos/modules/monitoring.nix @@ -20,6 +20,11 @@ in { default = true; description = "If hardware should be reported"; }; + speedtest = mkOption { + type = types.bool; + default = false; + description = "If speedtest should be used to measure connection speed"; + }; host = mkOption { type = types.str; @@ -87,6 +92,14 @@ in { } ]; wireless = [{}]; + }) // (optionaAttrs cnf.speedtest { + exec = [{ + commands = ["${pkgs.speedtest-cli}/bin/speedtest --json"]; + name_override = "speedtest"; + timeout = "5m"; + interval = "15m"; + data_format = "json"; + }]; }); }; }; |