nixos-configuration/roles/subroles/reversing.nix

9 lines
111 B
Nix
Raw Normal View History

2021-12-29 13:06:12 +01:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
radare2
ghidra-bin
gdb
];
}