summaryrefslogtreecommitdiff
path: root/nixos/modules/features/wireshark/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/features/wireshark/default.nix')
-rw-r--r--nixos/modules/features/wireshark/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/modules/features/wireshark/default.nix b/nixos/modules/features/wireshark/default.nix
new file mode 100644
index 0000000..7b2141e
--- /dev/null
+++ b/nixos/modules/features/wireshark/default.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }:
+
+{
+ programs.wireshark = {
+ enable = true;
+ package = pkgs.wireshark;
+ };
+
+ users.users.seraphim = {
+ extraGroups = [ "wireshark" ];
+ };
+}