about summary refs log tree commit diff
path: root/users/grfn
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2023-04-11T13·18-0400
committerclbot <clbot@tvl.fyi>2023-04-11T13·38+0000
commit0b8575afd69b2f74ed2a8bfe0b1a0a9128a5a55d (patch)
tree277e69eb6d63823f3982417a69734164f70df7cc /users/grfn
parent513a35b503b4690f9e7faadfdcf73ab544995154 (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/grfn')
-rw-r--r--users/grfn/system/system/machines/ogopogo.nix1
-rw-r--r--users/grfn/system/system/modules/wireshark.nix6
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 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" ];
+}