1
0
Fork 0

initial commit

This commit is contained in:
Kim, Jimin 2025-05-14 21:32:16 +09:00
commit 54287f1685
Signed by: pomp
GPG key ID: D3932F82A0667A3B
8 changed files with 202 additions and 0 deletions

17
devenv.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs, ... }:
{
packages = with pkgs; [
nixd
nixfmt-rfc-style
tex-fmt
];
# https://devenv.sh/supported-languages/texlive/
languages.texlive = {
enable = true;
base = pkgs.texliveFull;
packages = [
];
};
}