Add openconnect plugin to networkmanager

This commit is contained in:
2025-07-10 17:50:34 +02:00
parent 8010d771a1
commit 0f07029660

View File

@ -2,6 +2,7 @@
{
inputs,
outputs,
pkgs,
...
}: {
imports =
@ -22,7 +23,12 @@
hardware.enableRedistributableFirmware = true;
# Networking
networking.networkmanager.enable = true;
networking.networkmanager = {
enable = true;
plugins = with pkgs; [
networkmanager-openconnect
];
};
services.resolved.enable = true;
programs.dconf.enable = true;