about summary refs log tree commit diff
path: root/users/aspen/system/system/modules/wireshark.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/aspen/system/system/modules/wireshark.nix')
-rw-r--r--users/aspen/system/system/modules/wireshark.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/users/aspen/system/system/modules/wireshark.nix b/users/aspen/system/system/modules/wireshark.nix
new file mode 100644
index 0000000000..b233d40041
--- /dev/null
+++ b/users/aspen/system/system/modules/wireshark.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+
+{
+  programs.wireshark = {
+    enable = true;
+    package = pkgs.wireshark;
+  };
+  users.users.aspen.extraGroups = [ "wireshark" ];
+}