1

Update flake environments

This commit is contained in:
2023-11-10 12:28:39 +01:00
parent d36db39cdb
commit f86136a728
6 changed files with 53 additions and 101 deletions

42
env/flake_latex.nix vendored Normal file
View File

@ -0,0 +1,42 @@
{
description = "LaTeX Environment";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.devshell.url = "github:numtide/devshell";
outputs = {
self,
nixpkgs,
flake-utils,
devshell,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [devshell.overlays.default];
};
latexPython = pkgs.python311.withPackages (p:
with p; [
rich
pygments
]);
in {
devShell = pkgs.devshell.mkShell {
name = "LaTeX Environment";
packages = with pkgs; [
texlive.combined.scheme-full
inkscape
latexPython
texlab
];
# Use $1 for positional args
# commands = [
# ];
};
});
}