Adds benchmark settings. Removes blog and about from header

This commit is contained in:
2025-06-09 15:44:42 -07:00
parent 35fba1e43f
commit b49b03b46f
7 changed files with 47 additions and 67 deletions

View File

@@ -38,14 +38,14 @@
{ pkgs }:
{
default = pkgs.mkShell {
# Pinned packages available in the environment
packages = with pkgs; [
nodejs_22
git
eslint
nixpkgs-fmt
astro-language-server
nodePackages.prettier
git # Version control
nodejs_22 # Base language utils
eslint # Linting
astro-language-server # LSP
nodePackages.prettier # Formatting
nixpkgs-fmt # Formatting
drill # Benchmarking
];
};
}