summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/smokeping.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/smokeping.nix')
-rw-r--r--nixos/modules/services/networking/smokeping.nix28
1 files changed, 15 insertions, 13 deletions
diff --git a/nixos/modules/services/networking/smokeping.nix b/nixos/modules/services/networking/smokeping.nix
index 0747ff6dd5a9..4470c18fd533 100644
--- a/nixos/modules/services/networking/smokeping.nix
+++ b/nixos/modules/services/networking/smokeping.nix
@@ -124,7 +124,8 @@ in
};
hostName = mkOption {
type = types.str;
- default = config.networking.hostName;
+ default = config.networking.fqdn;
+ defaultText = "\${config.networking.fqdn}";
example = "somewhere.example.com";
description = "DNS name for the urls generated in the cgi.";
};
@@ -156,6 +157,7 @@ in
ownerEmail = mkOption {
type = types.str;
default = "no-reply@${cfg.hostName}";
+ defaultText = "no-reply@\${hostName}";
example = "no-reply@yourdomain.com";
description = "Email contact for owner";
};
@@ -239,18 +241,18 @@ in
targetConfig = mkOption {
type = types.lines;
default = ''
- probe = FPing
- menu = Top
- title = Network Latency Grapher
- remark = Welcome to the SmokePing website of xxx Company. \
- Here you will learn all about the latency of our network.
- + Local
- menu = Local
- title = Local Network
- ++ LocalMachine
- menu = Local Machine
- title = This host
- host = localhost
+ probe = FPing
+ menu = Top
+ title = Network Latency Grapher
+ remark = Welcome to the SmokePing website of xxx Company. \
+ Here you will learn all about the latency of our network.
+ + Local
+ menu = Local
+ title = Local Network
+ ++ LocalMachine
+ menu = Local Machine
+ title = This host
+ host = localhost
'';
description = "Target configuration";
};