From 340782ccf746393f5af0ea9fe653a7ceea81d4d9 Mon Sep 17 00:00:00 2001 From: Tobias Frischmann Date: Thu, 6 Aug 2026 12:54:57 +0200 Subject: [PATCH] add openvpn plugin --- hosts/laptop/configuration.nix | 7 ++++++- hosts/pc/configuration.nix | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 1a74661..a10fb9c 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -35,7 +35,12 @@ # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Enable networking - networking.networkmanager.enable = true; + networking.networkmanager = { + enable = true; + plugins = with pkgs; [ + networkmanager-openvpn + ]; + }; hardware.bluetooth = { enable = true; diff --git a/hosts/pc/configuration.nix b/hosts/pc/configuration.nix index ed250d0..23ff453 100644 --- a/hosts/pc/configuration.nix +++ b/hosts/pc/configuration.nix @@ -35,7 +35,12 @@ # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Enable networking - networking.networkmanager.enable = true; + networking.networkmanager = { + enable = true; + plugins = with pkgs; [ + networkmanager-openvpn + ]; + }; # Set your time zone. time.timeZone = "Europe/Vienna"; -- 2.51.2