27 lines
328 B
Nix
Raw Normal View History

2025-01-26 12:57:38 +01:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.modules.matlab;
in
{
options.modules.matlab = {
enable = mkEnableOption "matlab";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
matlab
];
2025-01-26 13:01:54 +01:00
home.sessionVariables = {
_JAVA_AWT_WM_NONREPARENTING = "1";
};
2025-01-26 12:57:38 +01:00
};
}