nixpkgs/nixos/modules/config/vpnc.nix

42 lines
782 B
Nix
Raw Normal View History

{ config, lib, ... }:
2014-08-21 02:57:41 +00:00
with lib;
let
cfg = config.networking.vpnc;
mkServiceDef = name: value:
{
2014-08-31 17:00:54 +00:00
name = "vpnc/${name}.conf";
value = { text = value; };
2014-08-21 02:57:41 +00:00
};
in
{
options = {
networking.vpnc = {
services = mkOption {
type = types.attrsOf types.str;
2014-08-31 19:12:15 +00:00
default = {};
2015-07-04 06:48:27 +00:00
example = literalExample ''
{ test = '''
IPSec gateway 192.168.1.1
IPSec ID someID
IPSec secret secretKey
Xauth username name
Xauth password pass
''';
}
'';
2014-08-21 02:57:41 +00:00
description =
''
The names of cisco VPNs and their associated definitions
'';
};
};
};
2014-08-31 17:00:54 +00:00
config.environment.etc = mapAttrs' mkServiceDef cfg.services;
2014-08-21 02:57:41 +00:00
}