soraefir 0920a1381d
Some checks failed
Nix Build / build-nixos (push) Failing after 29s
More opt
2024-04-14 22:45:21 +02:00

10 lines
230 B
Nix

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