~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website
1{ pkgs, ... }: { 2 3 packages = with pkgs; [ 4 gitFull 5 pipenv 6 ]; 7 8 languages = { 9 javascript = { 10 enable = true; 11 package = pkgs.nodejs_22; 12 }; 13 python = { 14 enable = true; 15 version = "3.13.3"; 16 }; 17 }; 18 19 enterShell = '' 20 pipenv install 21 ''; 22}