summaryrefslogtreecommitdiff
path: root/nixos/modules/features/wireshark/default.nix
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-07-31 14:03:07 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-07-31 14:03:07 +0700
commit4835f660f9435fa64336daaaae1ea3cab1dfbee6 (patch)
tree45524b7f7cdb6009fa85558cea44678b2b563a43 /nixos/modules/features/wireshark/default.nix
parent59226408d8bc950d7ec8c21623f28b5f7de8fce0 (diff)
mouse
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" ];
+ };
+}