Added mathematica
This commit is contained in:
parent
02e5532cb3
commit
030c41f7a0
|
@ -2,6 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./ide/mathematica.nix
|
||||
./ide/matlab.nix
|
||||
./language/cpp.nix
|
||||
./language/haskell.nix
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.mathematica;
|
||||
in
|
||||
{
|
||||
options.modules.mathematica = {
|
||||
enable = mkEnableOption "mathematica";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
mathematica
|
||||
];
|
||||
};
|
||||
}
|
|
@ -95,6 +95,7 @@
|
|||
vscode.enable = true;
|
||||
docker.enable = true;
|
||||
matlab.enable = true;
|
||||
mathematica.enable = true;
|
||||
|
||||
# Languages
|
||||
haskell.enable = false;
|
||||
|
|
Loading…
Reference in New Issue