summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--.latexmkrc1
-rw-r--r--content/papers.bib11
-rw-r--r--flake.lock16
-rw-r--r--flake.nix25
5 files changed, 24 insertions, 30 deletions
diff --git a/.gitignore b/.gitignore
index 5c49c85..bf5ead6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+.latex-build
**/build/*
.direnv
.vscode
diff --git a/.latexmkrc b/.latexmkrc
new file mode 100644
index 0000000..f3f41ec
--- /dev/null
+++ b/.latexmkrc
@@ -0,0 +1 @@
+$out_dir = '.latex-build';
diff --git a/content/papers.bib b/content/papers.bib
index 0828758..63142db 100644
--- a/content/papers.bib
+++ b/content/papers.bib
@@ -1,3 +1,14 @@
+@unpublished{briggs_gromov,
+ title = {A discrete view of {G}romov's filling area conjecture},
+ author = {Briggs, Joseph},
+ month = {feb},
+ year = {2026},
+ eprint = {2602.17859},
+ eprinttype = {arXiv},
+ eprintclass = {math.DG},
+ keywords = {submitted},
+}
+
@unpublished{briggs_frogs,
title = {Frogs, hats and common subsequences},
author = {Briggs, Joseph and Parker, Alex and Schwieder, Coy},
diff --git a/flake.lock b/flake.lock
index d2f6f2d..8905126 100644
--- a/flake.lock
+++ b/flake.lock
@@ -1,20 +1,5 @@
{
"nodes": {
- "files": {
- "locked": {
- "lastModified": 1762767848,
- "narHash": "sha256-trF2WXzH57uSkA1zeI8FTz8tU6vPYrklkTjh/7DZy/M=",
- "owner": "mightyiam",
- "repo": "files",
- "rev": "2d9d4937e94006ad8f165dfab9dff87cfab7eb2b",
- "type": "github"
- },
- "original": {
- "owner": "mightyiam",
- "repo": "files",
- "type": "github"
- }
- },
"flake-compat": {
"flake": false,
"locked": {
@@ -509,7 +494,6 @@
},
"root": {
"inputs": {
- "files": "files",
"flake-parts": "flake-parts",
"latex-utils": "latex-utils",
"nix-filter": "nix-filter",
diff --git a/flake.nix b/flake.nix
index a79574b..d44582d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -10,7 +10,6 @@
systems.follows = "systems";
};
};
- files.url = "github:mightyiam/files";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
};
@@ -20,7 +19,6 @@
imports = [
latex-utils.modules.flake.latex-utils
- inputs.files.flakeModules.default
];
latex-utils = {
@@ -39,21 +37,20 @@
inputsFrom = [
config.devShells.latex-utils
];
- nativeBuildInputs = [
- config.files.writer.drv
- ];
+ # nativeBuildInputs = [
+ # config.packages.latexmk
+ # ];
};
- files.files = [
- {
- path_ = ".latexmkrc";
- drv = pkgs.writeText ".latexmkrc" /* perl */ ''
- $out_dir = './build';
- $pdf_mode = 1;
- $pdflatex = 'pdflatex -shell-escape -interaction=nonstopmode %O %S';
+ packages = {
+ deploy = pkgs.writeShellApplication {
+ name = "deploy";
+ runtimeInputs = [ pkgs.rsync ];
+ text = ''
+ rsync --chown=nginx:nginx ${config.packages.cv} root@mathematicaster.org:/var/www/doc/cv.pdf
'';
- }
- ];
+ };
+ };
};
};
}