7 lines
162 B
Nix
7 lines
162 B
Nix
{ pkgs, config, ... }: {
|
|
programs.adb.enable = true;
|
|
programs.wireshark.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ wget dconf wireshark ];
|
|
}
|