aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorChris Wells <chris@mathematicaster.org>2026-02-22 22:30:47 -0600
committerChris Wells <chris@mathematicaster.org>2026-02-22 22:30:47 -0600
commit85f1c033c4a489e3e38cd1af0c0495b273f2e727 (patch)
tree0e6cfd5a693601e19266ba8d4da835b5b9e48521 /flake.nix
downloadtex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.tar
tex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.tar.gz
tex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.tar.bz2
tex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.tar.lz
tex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.tar.xz
tex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.tar.zst
tex-shell-85f1c033c4a489e3e38cd1af0c0495b273f2e727.zip
Initial commit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..d17aca5
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,19 @@
+{
+ description = "TeX devShell for flake-parts";
+
+ inputs = {
+ flake-parts.url = "github:hercules-ci/flake-parts";
+ systems.url = "github:nix-systems/default";
+ };
+
+ outputs = inputs @ { self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit self inputs; } {
+ systems = import inputs.systems;
+
+ flake.flakeModules.default = ./module.nix;
+
+ flake.templates.default = {
+ path = ./template;
+ description = "TeX-utils default template";
+ };
+ };
+}