From 87a81883bd7af8d4cc45910551f442d1654d9ace Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 1 Aug 2025 18:26:26 +0200 Subject: [PATCH] Networkmanager: add openvpn plugin --- instances/sif/configuration.nix | 5 ++++- instances/thor/configuration.nix | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/instances/sif/configuration.nix b/instances/sif/configuration.nix index 35862a4..f286885 100644 --- a/instances/sif/configuration.nix +++ b/instances/sif/configuration.nix @@ -60,7 +60,10 @@ networking = { hostName = "sif"; - networkmanager.enable = true; + networkmanager = { + enable = true; + plugins = with pkgs; [ networkmanager-openvpn ]; + }; # networkmanager.wifi.backend = "iwd"; # Configure network proxy if necessary diff --git a/instances/thor/configuration.nix b/instances/thor/configuration.nix index 028c298..9fbe6d4 100644 --- a/instances/thor/configuration.nix +++ b/instances/thor/configuration.nix @@ -119,7 +119,10 @@ networking = { hostName = "thor"; # Define your hostname. - networkmanager.enable = true; + networkmanager = { + enable = true; + plugins = with pkgs; [ networkmanager-openvpn ]; + }; firewall.enable = false;