nixos/vpnc: fix formatting of example

This commit is contained in:
Leroy Hopson
2016-02-27 22:25:39 +13:00
parent a8b44c74d3
commit 3e326efffc
+4 -4
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