From b80e81a68f27220de703caffeebe7454c538590e Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 25 Jan 2024 10:58:38 -0700 Subject: [PATCH] add NixOS module for RL VPN support --- main/nixos-modules.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main/nixos-modules.nix b/main/nixos-modules.nix index 0a17189..346ae4b 100644 --- a/main/nixos-modules.nix +++ b/main/nixos-modules.nix @@ -28,4 +28,11 @@ virtualisation.docker.package = pkgs.docker; }; + + renaissance-vpn = + { pkgs, ... }: + { + services.globalprotect.enable = true; + environment.systemPackages = [ pkgs.globalprotect-openconnect ]; + }; }