updated changes so far

This commit is contained in:
2026-04-26 22:23:54 +02:00
commit 930f7ae4a4
16 changed files with 5456 additions and 0 deletions

22
flake.nix Normal file
View File

@@ -0,0 +1,22 @@
{
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
];
};
};
}