initial commit

This commit is contained in:
2026-06-15 11:10:31 +02:00
commit 4daf219dd6
23 changed files with 1027 additions and 0 deletions

23
flake.nix Normal file
View File

@@ -0,0 +1,23 @@
{
description = "LaTeX paper build environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs =
{ self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
name = "latex";
buildInputs = with pkgs; [
texliveFull
octave
];
};
};
}