summaryrefslogtreecommitdiff
path: root/modules/home/re.nix
blob: 03fde12ad9c0815dbedada616ecc97096b219424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  pkgs,
  inputs,
  ...
}:
{
  home.packages = [
    pkgs.binaryninja-free
    pkgs.avalonia-ilspy
    (pkgs.imhex.overrideAttrs (old: {
      patches = [ ./imhex-refresh-callback.patch ];
    }))
    (import ./ghidra.nix { inherit pkgs; })
  ];
}