12 lines
187 B
Nix
12 lines
187 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
remmina
|
|
freerdp
|
|
python3
|
|
zoom-us
|
|
globalprotect-openconnect
|
|
];
|
|
|
|
services.globalprotect.enable = true;
|
|
}
|