Files
nixconfig/modules/nixos/tools/debug/default.nix
T
soraefir 546b9cb09d cleanup
2026-06-21 18:38:02 +02:00

11 lines
251 B
Nix

{ pkgs, config, lib, ... }: {
config = lib.mkIf (config.syscfg.make.develop) {
programs.wireshark.enable = true;
programs.dconf.enable = true;
environment.systemPackages = with pkgs; [ wget dconf wireshark mtr android-tools ];
};
}