Change-Id: I97cf04ae6a950fa84262e94d297775edc5273852 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8548 Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
9 lines
162 B
Nix
9 lines
162 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.wireshark = {
|
|
enable = true;
|
|
package = pkgs.wireshark;
|
|
};
|
|
users.users.grfn.extraGroups = [ "wireshark" ];
|
|
}
|