mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
88 lines
3.1 KiB
Nix
88 lines
3.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
with (import ./param-lib.nix lib);
|
|
|
|
let
|
|
cfg = config.services.strongswan-swanctl;
|
|
configFile = pkgs.writeText "swanctl.conf"
|
|
( (paramsToConf cfg.swanctl swanctlParams)
|
|
+ (concatMapStrings (i: "\ninclude ${i}") cfg.includes));
|
|
swanctlParams = import ./swanctl-params.nix lib;
|
|
in {
|
|
options.services.strongswan-swanctl = {
|
|
enable = mkEnableOption "strongswan-swanctl service";
|
|
|
|
package = mkPackageOption pkgs "strongswan" { };
|
|
|
|
strongswan.extraConfig = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = ''
|
|
Contents of the `strongswan.conf` file.
|
|
'';
|
|
};
|
|
|
|
swanctl = paramsToOptions swanctlParams;
|
|
includes = mkOption {
|
|
type = types.listOf types.path;
|
|
default = [];
|
|
description = ''
|
|
Extra configuration files to include in the swanctl configuration. This can be used to provide secret values from outside the nix store.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
assertions = [
|
|
{ assertion = !config.services.strongswan.enable;
|
|
message = "cannot enable both services.strongswan and services.strongswan-swanctl. Choose either one.";
|
|
}
|
|
];
|
|
|
|
environment.etc."swanctl/swanctl.conf".source = configFile;
|
|
|
|
# The swanctl command complains when the following directories don't exist:
|
|
# See: https://wiki.strongswan.org/projects/strongswan/wiki/Swanctldirectory
|
|
systemd.tmpfiles.rules = [
|
|
"d /etc/swanctl/x509 -" # Trusted X.509 end entity certificates
|
|
"d /etc/swanctl/x509ca -" # Trusted X.509 Certificate Authority certificates
|
|
"d /etc/swanctl/x509ocsp -"
|
|
"d /etc/swanctl/x509aa -" # Trusted X.509 Attribute Authority certificates
|
|
"d /etc/swanctl/x509ac -" # Attribute Certificates
|
|
"d /etc/swanctl/x509crl -" # Certificate Revocation Lists
|
|
"d /etc/swanctl/pubkey -" # Raw public keys
|
|
"d /etc/swanctl/private -" # Private keys in any format
|
|
"d /etc/swanctl/rsa -" # PKCS#1 encoded RSA private keys
|
|
"d /etc/swanctl/ecdsa -" # Plain ECDSA private keys
|
|
"d /etc/swanctl/bliss -"
|
|
"d /etc/swanctl/pkcs8 -" # PKCS#8 encoded private keys of any type
|
|
"d /etc/swanctl/pkcs12 -" # PKCS#12 containers
|
|
];
|
|
|
|
systemd.services.strongswan-swanctl = {
|
|
description = "strongSwan IPsec IKEv1/IKEv2 daemon using swanctl";
|
|
wantedBy = [ "multi-user.target" ];
|
|
wants = [ "network-online.target" ];
|
|
after = [ "network-online.target" ];
|
|
path = with pkgs; [ kmod iproute2 iptables util-linux ];
|
|
environment = {
|
|
STRONGSWAN_CONF = pkgs.writeTextFile {
|
|
name = "strongswan.conf";
|
|
text = cfg.strongswan.extraConfig;
|
|
};
|
|
SWANCTL_DIR = "/etc/swanctl";
|
|
};
|
|
restartTriggers = [ config.environment.etc."swanctl/swanctl.conf".source ];
|
|
serviceConfig = {
|
|
ExecStart = "${cfg.package}/sbin/charon-systemd";
|
|
Type = "notify";
|
|
ExecStartPost = "${cfg.package}/sbin/swanctl --load-all --noprompt";
|
|
ExecReload = "${cfg.package}/sbin/swanctl --reload";
|
|
Restart = "on-abnormal";
|
|
};
|
|
};
|
|
};
|
|
}
|