7 lines
162 B
Nix
Raw Normal View History

2024-01-19 11:58:52 +01:00
{ pkgs, config, ... }: {
2023-11-04 02:28:27 +01:00
programs.adb.enable = true;
programs.wireshark.enable = true;
2024-01-19 11:58:52 +01:00
environment.systemPackages = with pkgs; [ wget dconf wireshark ];
2023-11-04 02:28:27 +01:00
}