nix-dotfiles/hosts/common/programs/wireshark.nix

11 lines
169 B
Nix

{ config, pkgs, ... }:
let
inherit (config) machineVars;
in
{
programs.wireshark = {
enable = !config.machineVars.headless;
package = pkgs.wireshark;
};
}