nix-git/modules/uni-vpn.nix

18 lines
374 B
Nix
Raw Normal View History

2024-08-23 12:37:30 +02:00
{ config, pkgs, ... }:
{
assertions = [{
2025-01-08 16:19:37 +01:00
assertion = config.services.xserver.desktopManager.gnome.enable || config.services.desktopManager.plasma6.enable;
message = "Only tested with GNOME and KDE";
2024-08-23 12:37:30 +02:00
}];
imports = [
./t-telesec.nix
];
2025-02-09 21:35:44 +01:00
users.users."yoda" = {
2024-08-23 12:37:30 +02:00
packages = with pkgs; [
2024-12-03 22:16:26 +01:00
networkmanager-openconnect # Openconnect VPN
2024-08-23 12:37:30 +02:00
];
};
}