From 4835f660f9435fa64336daaaae1ea3cab1dfbee6 Mon Sep 17 00:00:00 2001 From: seraphim <18ycm9tx@anonaddy.me> Date: Fri, 31 Jul 2026 14:03:07 +0700 Subject: mouse --- nixos/modules/features/wireshark/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nixos/modules/features/wireshark/default.nix (limited to 'nixos/modules/features/wireshark') 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" ]; + }; +} -- cgit v1.2.3