diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-07-31 14:03:07 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-07-31 14:03:07 +0700 |
| commit | 4835f660f9435fa64336daaaae1ea3cab1dfbee6 (patch) | |
| tree | 45524b7f7cdb6009fa85558cea44678b2b563a43 /nixos/modules/features/wireshark | |
| parent | 59226408d8bc950d7ec8c21623f28b5f7de8fce0 (diff) | |
mouse
Diffstat (limited to 'nixos/modules/features/wireshark')
| -rw-r--r-- | nixos/modules/features/wireshark/default.nix | 12 |
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" ]; + }; +} |
