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