add wireshark

This commit is contained in:
xunuwu 2025-06-26 17:27:49 +02:00
parent c62b2d7d21
commit 6cb610d36d
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
3 changed files with 9 additions and 0 deletions

View file

@ -69,6 +69,7 @@
programs.openrgb programs.openrgb
programs.tools programs.tools
programs.thunar programs.thunar
programs.wireshark
services.psd services.psd
services.dbus-broker services.dbus-broker

View file

@ -15,6 +15,7 @@
"video" "video"
"render" "render"
"audio" "audio"
"wireshark"
]; ];
openssh.authorizedKeys.keys = with vars.sshKeys; [ openssh.authorizedKeys.keys = with vars.sshKeys; [

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
usbmon.enable = true;
};
}