Add some devShells

This commit is contained in:
Daan Vanoverloop 2023-07-02 18:12:42 +02:00
parent dae601873c
commit 299c0f0465
Signed by: Danacus
GPG Key ID: F2272B50E129FC5C
1 changed files with 23 additions and 0 deletions

View File

@ -39,6 +39,29 @@
rustToolchain
]);
};
latex = pkgs.mkShell {
packages = (with pkgs; [
texlive.combined.scheme-full
tectonic
]);
};
python =
let
# Use Python 3.11
python = pkgs.python311;
in
pkgs.mkShell {
# The Nix packages provided in the environment
packages = [
# Python plus helper tools
(python.withPackages (ps: with ps; [
pip # The pip installer
]))
];
};
});
};
}