12 lines
209 B
Nix
12 lines
209 B
Nix
{
|
|
flake.nixosModules.wireshark = {
|
|
programs.wireshark = {
|
|
enable = true;
|
|
dumpcap.enable = true;
|
|
usbmon.enable = true;
|
|
};
|
|
|
|
users.users.julian.extraGroups = ["wireshark"];
|
|
};
|
|
}
|