diff options
author | Griffin Smith <root@gws.fyi> | 2023-04-11T13·18-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-04-11T13·38+0000 |
commit | 0b8575afd69b2f74ed2a8bfe0b1a0a9128a5a55d (patch) | |
tree | 277e69eb6d63823f3982417a69734164f70df7cc /users | |
parent | 513a35b503b4690f9e7faadfdcf73ab544995154 (diff) |
feat(grfn/system): Install wireshark r/6092
Change-Id: Ie4948d087a1d834a7bbef05759b13909ac022388 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8475 Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/system/system/machines/ogopogo.nix | 1 | ||||
-rw-r--r-- | users/grfn/system/system/modules/wireshark.nix | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/users/grfn/system/system/machines/ogopogo.nix b/users/grfn/system/system/machines/ogopogo.nix index 06815d136c5e..f51ffd285870 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 000000000000..0bc1d8f04ab4 --- /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" ]; +} |