nix-git/modules/uni-vpn.nix

18 lines
321 B
Nix
Raw Normal View History

2024-08-23 12:37:30 +02:00
{ config, pkgs, ... }:
{
assertions = [{
assertion = config.services.xserver.desktopManager.gnome.enable;
message = "Only tested with GNOME";
}];
imports = [
./t-telesec.nix
];
users.users.yoda = {
packages = with pkgs; [
gnome.networkmanager-openconnect # Openconnect VPN
];
};
}