about summary refs log tree commit diff
path: root/users/grfn
diff options
context:
space:
mode:
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" ];
+}