nixos-configuration/modules/wireshark.nix
Jakob Lechner 611502e5bb Revert "Add BLE sniffer to Wireshark"
This reverts commit 9dafacebda.
2025-12-09 15:31:25 +01:00

7 lines
143 B
Nix

{ config, lib, pkgs, ... }:
lib.mkIf config.jalr.gui.enable {
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
}