nixos/vpnc: fix formatting of example

This commit is contained in:
Leroy Hopson 2015-07-04 18:48:27 +12:00
parent a8b44c74d3
commit 3e326efffc

View File

@ -17,16 +17,16 @@ in
services = mkOption { services = mkOption {
type = types.attrsOf types.str; type = types.attrsOf types.str;
default = {}; default = {};
example = { example = literalExample ''
test = { test = '''
'' IPSec gateway 192.168.1.1
IPSec gateway 192.168.1.1 IPSec ID someID
IPSec ID someID IPSec secret secretKey
IPSec secret secretKey Xauth username name
Xauth username name Xauth password pass
Xauth password pass ''';
''; }
}; '';
description = description =
'' ''
The names of cisco VPNs and their associated definitions The names of cisco VPNs and their associated definitions