From 592f5dc0ef457b0e3861f14fed7ce45d448d6254 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Sun, 26 Jan 2025 13:01:54 +0100 Subject: [PATCH] Set env variable to make matlab render --- user-modules/development/ide/matlab.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/user-modules/development/ide/matlab.nix b/user-modules/development/ide/matlab.nix index fd89e6e..d7fb723 100644 --- a/user-modules/development/ide/matlab.nix +++ b/user-modules/development/ide/matlab.nix @@ -18,5 +18,9 @@ in home.packages = with pkgs; [ matlab ]; + + home.sessionVariables = { + _JAVA_AWT_WM_NONREPARENTING = "1"; + }; }; }