feat: add wireshark

This commit is contained in:
Jacob Bachmann 2024-07-03 10:13:54 +02:00
parent c8f25ac304
commit fe18c0b567
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
2 changed files with 7 additions and 2 deletions

View file

@ -1,7 +1,12 @@
{ ... }: {
{ pkgs, ... }: {
networking.networkmanager.enable = true;
systemd.services = {
NetworkManager-wait-online.enable = false;
};
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
}