From 0b8575afd69b2f74ed2a8bfe0b1a0a9128a5a55d Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Tue, 11 Apr 2023 09:18:35 -0400 Subject: feat(grfn/system): Install wireshark Change-Id: Ie4948d087a1d834a7bbef05759b13909ac022388 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8475 Reviewed-by: grfn Autosubmit: grfn Tested-by: BuildkiteCI --- users/grfn/system/system/machines/ogopogo.nix | 1 + users/grfn/system/system/modules/wireshark.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 users/grfn/system/system/modules/wireshark.nix (limited to 'users/grfn') diff --git a/users/grfn/system/system/machines/ogopogo.nix b/users/grfn/system/system/machines/ogopogo.nix index 06815d136c..f51ffd2858 100644 --- a/users/grfn/system/system/machines/ogopogo.nix +++ b/users/grfn/system/system/machines/ogopogo.nix @@ -9,6 +9,7 @@ ../modules/sound.nix ../modules/tvl.nix ../modules/development.nix + ../modules/wireshark.nix ../modules/work/kolide.nix ]; diff --git a/users/grfn/system/system/modules/wireshark.nix b/users/grfn/system/system/modules/wireshark.nix new file mode 100644 index 0000000000..0bc1d8f04a --- /dev/null +++ b/users/grfn/system/system/modules/wireshark.nix @@ -0,0 +1,6 @@ +{ config, lib, pkgs, ... }: + +{ + programs.wireshark.enable = true; + users.users.grfn.extraGroups = [ "wireshark" ]; +} -- cgit 1.4.1