nixos-configuration/modules/wireshark.nix
2023-11-08 23:35:55 +00:00

7 lines
143 B
Nix

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