feat(template): +avarage

This commit is contained in:
2025-10-28 11:41:26 +00:00
parent d01674e6a4
commit f08bd1e702
4 changed files with 154 additions and 0 deletions

View File

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