From bf3134c5cb8bcf6cef4bc5fdd3a7cb71f6e6daf1 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 29 May 2024 17:52:50 -0500 Subject: [PATCH] feat(nix/host/orion): enable globalprotect vpn --- hosts/orion/modules/services/globalprotect.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hosts/orion/modules/services/globalprotect.nix diff --git a/hosts/orion/modules/services/globalprotect.nix b/hosts/orion/modules/services/globalprotect.nix new file mode 100644 index 00000000..0be09b17 --- /dev/null +++ b/hosts/orion/modules/services/globalprotect.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + services.globalprotect.enable = true; + environment.systemPackages = with pkgs; [ + globalprotect-openconnect + ]; +} \ No newline at end of file