From c56593516d8309557f4b74e60add8e2a36f0bf95 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Wed, 27 Aug 2025 16:52:49 +0800 Subject: [PATCH] fix: wireshark --- modules/nixos/desktop/networking/wireshark.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/nixos/desktop/networking/wireshark.nix diff --git a/modules/nixos/desktop/networking/wireshark.nix b/modules/nixos/desktop/networking/wireshark.nix new file mode 100644 index 00000000..28026e6a --- /dev/null +++ b/modules/nixos/desktop/networking/wireshark.nix @@ -0,0 +1,9 @@ +{ + programs.wireshark = { + enable = true; + # Whether to allow users in the 'wireshark' group to capture network traffic(via a setcap wrapper). + dumpcap.enable = true; + # Whether to allow users in the 'wireshark' group to capture USB traffic (via udev rules). + usbmon.enable = false; + }; +}