From 30cd2d42fd98d5c9b631c3ef80c21dd6015a41f5 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Tue, 2 Dec 2025 23:51:34 +0100 Subject: [PATCH] nixos/networkmanager: explicitly configure VPN plugins required after NixOS 25.11 upgrade --- common/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/default.nix b/common/default.nix index 4616f93..b672069 100644 --- a/common/default.nix +++ b/common/default.nix @@ -109,6 +109,9 @@ in }; }; }; + plugins = with pkgs; [ + networkmanager-openvpn + ]; }; services.avahi.enable = true;