From 0d43e3650aae93bd27adc7b731eca6d90a2ee04d Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 25 Nov 2025 15:34:36 -0600 Subject: [PATCH] feat: added tshark --- modules/home/cli/utilities/tshark/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/home/cli/utilities/tshark/default.nix diff --git a/modules/home/cli/utilities/tshark/default.nix b/modules/home/cli/utilities/tshark/default.nix new file mode 100644 index 0000000..838fd1a --- /dev/null +++ b/modules/home/cli/utilities/tshark/default.nix @@ -0,0 +1,11 @@ +{ + pkgs, + ... +}: +{ + home.packages = builtins.attrValues { + inherit (pkgs) + tshark + ; + }; +}