nixos-configuration/modules/wireshark.nix
2023-06-22 12:03:23 +00:00

7 lines
143 B
Nix

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