Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
97 lines
3.1 KiB
Nix
97 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;
|
|
environment.etc."strongswan.conf".text = cfg.strongswan.extraConfig;
|
|
|
|
# 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
|
|
];
|
|
restartTriggers = [
|
|
config.environment.etc."swanctl/swanctl.conf".source
|
|
config.environment.etc."strongswan.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";
|
|
};
|
|
};
|
|
};
|
|
}
|