dotfiles/user-modules/development/ide/mathematica.nix

27 lines
336 B
Nix
Raw Permalink Normal View History

2025-01-30 18:05:44 +00:00
{
lib,
config,
pkgs,
...
}:
with lib;
let
cfg = config.modules.mathematica;
in
{
options.modules.mathematica = {
enable = mkEnableOption "mathematica";
};
config = mkIf cfg.enable {
2025-01-30 18:06:49 +00:00
modules.unfree.allowedPackages = [
"mathematica"
];
2025-01-30 18:05:44 +00:00
home.packages = with pkgs; [
mathematica
];
};
}