summaryrefslogtreecommitdiff
path: root/modules/home/re.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-24 08:41:03 -0500
committerChristian <[email protected]>2026-05-24 08:41:03 -0500
commite0ffe479504212a280934dd8c9a60128fc1e5f5f (patch)
treed163f737f0dffa5d3a781e43ef0853ee09341ddf /modules/home/re.nix
parenta294d9e5ee6939c60cd1db6b180d395aa55aab3c (diff)
Wrap ghidra to set _JAVA_AWT_WM_NONREPARENTING for XMonad compatibility
Diffstat (limited to 'modules/home/re.nix')
-rw-r--r--modules/home/re.nix10
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
+ '';
+ })
];
}