mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-20 16:01:21 +02:00
10 lines
306 B
Nix
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;
|
|
};
|
|
}
|