engineering blog at https://blog.tangled.sh

add wrangler to nix

anirudh.fi 286e40d7 7132ea53

verified
Changed files
+9 -8
+9 -8
flake.nix
··· 2 2 description = "site"; 3 3 4 4 inputs = { 5 - nixpkgs.url = "github:nixos/nixpkgs"; 6 - vite.url = "github:icyphox/go-vite"; 7 - ia-fonts-src = { 8 - url = "github:iaolo/iA-Fonts"; 9 - flake = false; 10 - }; 5 + nixpkgs.url = "github:nixos/nixpkgs"; 6 + vite.url = "github:icyphox/go-vite"; 7 + ia-fonts-src = { 8 + url = "github:iaolo/iA-Fonts"; 9 + flake = false; 10 + }; 11 11 }; 12 12 13 13 outputs = ··· 40 40 pkgs.gnumake 41 41 pkgs.entr 42 42 pkgs.tailwindcss 43 + pkgs.wrangler 43 44 ]; 44 45 shellHook = '' 45 - cp -f ${ia-fonts-src}/"iA Writer Quattro"/Static/*.ttf static/fonts/ 46 - cp -f ${ia-fonts-src}/"iA Writer Mono"/Static/*.ttf static/fonts/ 46 + cp -f ${ia-fonts-src}/"iA Writer Quattro"/Static/*.ttf static/fonts/ 47 + cp -f ${ia-fonts-src}/"iA Writer Mono"/Static/*.ttf static/fonts/ 47 48 ''; 48 49 }; 49 50 }