From 47479f40d107992e5186dfd9b6688ca62af773dd Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Wed, 28 May 2025 15:58:52 +0200 Subject: [PATCH] Installed wireshark --- hosts/20212060/configuration.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/hosts/20212060/configuration.nix b/hosts/20212060/configuration.nix index 458d4de..cc48fc2 100644 --- a/hosts/20212060/configuration.nix +++ b/hosts/20212060/configuration.nix @@ -8,18 +8,28 @@ networking.hostName = "20212060"; # Admin users - users.users.jan.extraGroups = [ "wheel" ]; + users.users.jan.extraGroups = [ + "wheel" + "wireshark" + ]; # Enable virtualisation for VMs virtualisation.libvirtd.enable = true; + # Enable wireshark + programs.wireshark = { + enable = true; + dumpcap.enable = true; + usbmon.enable = true; + }; + # Set up wstunnel client services.wstunnel = { enable = true; clients.wg-tunnel = { connectTo = "wss://tunnel.bulthuis.dev:443"; localToRemote = [ - "udp://51820:10.10.40.100:51820" + "udp://51820:10.10.40.100:51820?timeout_sec=0" ]; }; };