Files
nix-config/modules/nixos/desktop/networking/wireshark.nix
2025-08-27 17:12:51 +08:00

10 lines
306 B
Nix

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