first commit
This commit is contained in:
commit
543b488ecf
9 changed files with 902 additions and 0 deletions
16
shell.nix
Normal file
16
shell.nix
Normal 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];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue