feat(nix/host/orion): enable globalprotect vpn
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m4s

This commit is contained in:
Price Hiller 2024-05-29 17:52:50 -05:00
parent a45ee53e49
commit bf3134c5cb
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -0,0 +1,6 @@
{ pkgs, ... }: {
services.globalprotect.enable = true;
environment.systemPackages = with pkgs; [
globalprotect-openconnect
];
}