summaryrefslogtreecommitdiff
path: root/system/wireshark.nix
blob: ec79b19dac9b2c5099050ece685e31ec48fd2038 (plain)
1
2
3
4
5
6
7
{ config, lib, pkgs, ... }:
{
  programs.wireshark = {
    enable = true;
    package = pkgs.wireshark;
  };
}