summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorYurii Matsiuk <ymatsiuk@users.noreply.github.com>2021-01-05 09:52:55 +0100
committerYurii Matsiuk <ymatsiuk@users.noreply.github.com>2021-01-07 20:29:58 +0100
commit239fa096b47e9f469c7e5dc74a5a33c3778315eb (patch)
tree86e1466e45a71edb6c5a5e469d91ea302c0d9702 /nixos
parent6e76293eb296fa59e0cdfde21054cdc97a1fbca9 (diff)
appgate-sdp: init at 5.1.2
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/appgate-sdp.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/nixos/modules/programs/appgate-sdp.nix b/nixos/modules/programs/appgate-sdp.nix
new file mode 100644
index 000000000000..1dec4ecf9ecc
--- /dev/null
+++ b/nixos/modules/programs/appgate-sdp.nix
@@ -0,0 +1,23 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+{
+ options = {
+ programs.appgate-sdp = {
+ enable = mkEnableOption
+ "AppGate SDP VPN client";
+ };
+ };
+
+ config = mkIf config.programs.appgate-sdp.enable {
+ boot.kernelModules = [ "tun" ];
+ environment.systemPackages = [ pkgs.appgate-sdp ];
+ services.dbus.packages = [ pkgs.appgate-sdp ];
+ systemd = {
+ packages = [ pkgs.appgate-sdp ];
+ # https://github.com/NixOS/nixpkgs/issues/81138
+ services.appgatedriver.wantedBy = [ "multi-user.target" ];
+ };
+ };
+}