nix-git/modules/uni-vpn.nix
2025-01-08 16:19:37 +01:00

18 lines
372 B
Nix

{ config, pkgs, ... }:
{
assertions = [{
assertion = config.services.xserver.desktopManager.gnome.enable || config.services.desktopManager.plasma6.enable;
message = "Only tested with GNOME and KDE";
}];
imports = [
./t-telesec.nix
];
users.users.yoda = {
packages = with pkgs; [
networkmanager-openconnect # Openconnect VPN
];
};
}