diff options
| author | Christian <[email protected]> | 2026-05-24 08:41:03 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-05-24 08:41:03 -0500 |
| commit | e0ffe479504212a280934dd8c9a60128fc1e5f5f (patch) | |
| tree | d163f737f0dffa5d3a781e43ef0853ee09341ddf | |
| parent | a294d9e5ee6939c60cd1db6b180d395aa55aab3c (diff) | |
Wrap ghidra to set _JAVA_AWT_WM_NONREPARENTING for XMonad compatibility
| -rw-r--r-- | modules/home/re.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/home/re.nix b/modules/home/re.nix index 9093b12..940b273 100644 --- a/modules/home/re.nix +++ b/modules/home/re.nix @@ -8,6 +8,14 @@ home.packages = with pkgs; [ binaryninja-free avalonia-ilspy - ghidra + (symlinkJoin { + name = "ghidra"; + paths = [ ghidra ]; + buildInputs = [ makeWrapper ]; + postBuild = '' + wrapProgram $out/bin/ghidra \ + --set _JAVA_AWT_WM_NONREPARENTING 1 + ''; + }) ]; } |
