diff options
author | Adrian Kummerlaender | 2019-05-11 12:14:53 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2019-05-11 12:14:53 +0200 |
commit | c836fc415e9324a6d7f586b7b7f55b0258c18589 (patch) | |
tree | 2737ad24fd6bab7997410816c4ee73826be5e3d7 /tasks | |
parent | 1389221565a903568acd40ec88fdf009b57ad400 (diff) | |
download | nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.tar nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.tar.gz nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.tar.bz2 nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.tar.lz nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.tar.xz nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.tar.zst nixos_home-c836fc415e9324a6d7f586b7b7f55b0258c18589.zip |
Update Tasker tasks
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/default.nix | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/tasks/default.nix b/tasks/default.nix index 6b891dd..c1a6876 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -49,19 +49,16 @@ in { cmake gcc8 gdb cgdb + universal-ctags ]); }; - latex_shell = { - description = "Generic LaTeX shell environment"; + sympy_shell = { + description = "Python shell with SymPy"; directory = "~/"; type = "environment"; - environment = with pkgs; let - texlive-custom = texlive.combine { - inherit (texlive) scheme-small collection-langgerman latexmk amsmath enumitem; - }; - in mkShellDerivation "latex-env" [ - texlive-custom + environment = with pkgs; mkShellDerivation "python-env" [ + (pkgs.python3.withPackages (python-packages: with python-packages; [ sympy ])) ]; }; }; |