Files
dotfiles/features-nixos/optional/wireshark.nix

12 lines
209 B
Nix

{
flake.nixosModules.wireshark = {
programs.wireshark = {
enable = true;
dumpcap.enable = true;
usbmon.enable = true;
};
users.users.julian.extraGroups = ["wireshark"];
};
}