about summary refs log tree commit diff
path: root/users/aspen/system/system/modules/wireshark.nix
{ config, lib, pkgs, ... }:

{
  programs.wireshark = {
    enable = true;
    package = pkgs.wireshark;
  };
  users.users.aspen.extraGroups = [ "wireshark" ];
}