add formatting
Some checks failed
Build and Release Resume PDF / build (push) Failing after 2m51s

This commit is contained in:
2026-03-27 15:23:21 -04:00
parent c47297342d
commit e12f97c216
17 changed files with 440 additions and 99 deletions

45
flake.nix Normal file
View File

@@ -0,0 +1,45 @@
{
description = "Resume development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
tex = (
pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-medium
preprint
titlesec
enumitem
sourcesanspro
xifthen
ifmtarg
framed
paralist
fontawesome7
;
}
);
preCommitTool = if pkgs ? prek then pkgs.prek else pkgs.pre-commit;
in
{
devShells.default = pkgs.mkShell {
packages = [
tex
pkgs.tex-fmt
preCommitTool
];
};
}
);
}