feat: add templates

This commit is contained in:
2025-08-05 04:41:27 +00:00
parent 492597b7ab
commit bb16555d4f
5 changed files with 164 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs }: let
dev-help = pkgs.writeShellScriptBin "dev-help" /* sh */ ''
printf '%s\n' \
'phph'
'';
rustToolchain = pkgs.pkgsBuildHost.rust-bin.stable."1.87.0".default;
in
pkgs.mkShell {
buildInputs = [ dev-help ];
nativeBuildInputs = [ rustToolchain pkgs.pkg-config ];
# environment
PAGER="${pkgs.hectic.nvim-pager}/bin/pager";
}