feat: add wireshark

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

View File

@ -27,6 +27,7 @@ in
wms.hyprland = enabled;
ghostty = enabled;
gimp = enabled;
wireshark = enabled;
ghidra = enabled;
browsers.firefox = {
enable = true;

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
];
};
}