first commit

This commit is contained in:
CronyAkatsuki 2026-02-05 10:29:09 +01:00
commit 543b488ecf
9 changed files with 902 additions and 0 deletions

16
shell.nix Normal file
View file

@ -0,0 +1,16 @@
{
pkgs ? import <nixpkgs> {},
pre-commit-hooks,
}: let
pre-commit-check = pre-commit-hooks.lib.${pkgs.system}.run {
src = ./.;
hooks = {
taplo.enable = true;
};
};
in
pkgs.mkShell {
inherit (pre-commit-check) shellHook;
name = "wiki.cronyakatsuki.xyz";
nativeBuildInputs = [pkgs.hugo];
}