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; + }; +}