dots/hosts/orion/modules/services/globalprotect.nix
Price Hiller bf3134c5cb
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m4s
feat(nix/host/orion): enable globalprotect vpn
2024-05-29 17:53:57 -05:00

6 lines
137 B
Nix

{ pkgs, ... }: {
services.globalprotect.enable = true;
environment.systemPackages = with pkgs; [
globalprotect-openconnect
];
}