feat: add wireshark
This commit is contained in:
parent
d6c908dc70
commit
6cd0437fb5
@ -27,6 +27,7 @@ in
|
||||
wms.hyprland = enabled;
|
||||
ghostty = enabled;
|
||||
gimp = enabled;
|
||||
wireshark = enabled;
|
||||
ghidra = enabled;
|
||||
browsers.firefox = {
|
||||
enable = true;
|
||||
|
17
modules/home/programs/graphical/wireshark/default.nix
Executable file
17
modules/home/programs/graphical/wireshark/default.nix
Executable 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user