nixos/smokeping: Replace the tabs in cfg.targetConfig

This was inconsistent with the rest of the module.
This commit is contained in:
Michael Weiss 2021-01-23 12:26:34 +01:00
parent 87fb5d381f
commit 237c20ac61
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -241,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";
};