mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
b6bac07973
The original work did not use the new nixfmt style. Signed-off-by: Rahul Rameshbabu <sergeantsagara@protonmail.com>
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.globalprotect;
|
|
|
|
execStart =
|
|
if cfg.csdWrapper == null then
|
|
"${pkgs.globalprotect-openconnect}/bin/gpservice"
|
|
else
|
|
"${pkgs.globalprotect-openconnect}/bin/gpservice --csd-wrapper=${cfg.csdWrapper}";
|
|
in
|
|
|
|
{
|
|
options.services.globalprotect = {
|
|
enable = lib.mkEnableOption "globalprotect";
|
|
|
|
settings = lib.mkOption {
|
|
description = ''
|
|
GlobalProtect-openconnect configuration. For more information, visit
|
|
<https://github.com/yuezk/GlobalProtect-openconnect/wiki/Configuration>.
|
|
'';
|
|
default = { };
|
|
example = {
|
|
"vpn1.company.com" = {
|
|
openconnect-args = "--script=/path/to/vpnc-script";
|
|
};
|
|
};
|
|
type = lib.types.attrs;
|
|
};
|
|
|
|
csdWrapper = lib.mkOption {
|
|
description = ''
|
|
A script that will produce a Host Integrity Protection (HIP) report,
|
|
as described at <https://www.infradead.org/openconnect/hip.html>
|
|
'';
|
|
default = null;
|
|
example = lib.literalExpression ''"''${pkgs.openconnect}/libexec/openconnect/hipreport.sh"'';
|
|
type = lib.types.nullOr lib.types.path;
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.dbus.packages = [ pkgs.globalprotect-openconnect ];
|
|
|
|
environment.etc."gpservice/gp.conf".text = lib.generators.toINI { } cfg.settings;
|
|
|
|
systemd.services.gpservice = {
|
|
description = "GlobalProtect openconnect DBus service";
|
|
serviceConfig = {
|
|
Type = "dbus";
|
|
BusName = "com.yuezk.qt.GPService";
|
|
ExecStart = execStart;
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
};
|
|
};
|
|
}
|