mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-31 22:53:06 +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;
|
|
};
|
|
}
|