feat: add wireshark

This commit is contained in:
2025-07-23 11:17:48 -04:00
parent d6c908dc70
commit 6cd0437fb5
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, lib, config, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.programs.graphical.wireshark;
in
{
options.${namespace}.programs.graphical.wireshark = {
enable = mkEnableOption "Wireshark";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
wireshark
];
};
}