moved out from abi dependent section

This commit is contained in:
2026-05-28 01:15:40 +09:00
parent 42fd5ef1cc
commit 92e69a7451
+13 -11
View File
@@ -30,16 +30,6 @@
];
in
{
templates = {
latex = {
path = ./templates/latex;
description = "Template for LaTeX";
};
pandoc = {
path = ./templates/pandoc;
description = "Template for Pandoc Markdown";
};
};
devShells.default = self.devShells.${system}.latex;
devShells.latex = pkgs.stdenv.mkDerivation {
inherit name;
@@ -60,5 +50,17 @@
];
};
}
);
) // {
templates = {
latex = {
path = ./templates/latex;
description = "Template for LaTeX";
};
pandoc = {
path = ./templates/pandoc;
description = "Template for Pandoc Markdown";
};
};
defaultTemplate = self.templates.latex;
};
}