initial commit

This commit is contained in:
2026-06-13 22:17:41 +09:00
commit f021bcc3ad
21 changed files with 6410 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
description = "Template for Pandoc Markdown";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
report-temp.url = "github:kenryuS/report-temp";
};
outputs = { self, nixpkgs, flake-utils, report-temp }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config = {};
overlays = [];
};
in
{
devShells.default = report-temp.devShells.${system}.pandoc;
}
);
}