My resume
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix font warnings

Alex van de Sandt (Jul 14, 2026, 5:00 PM -0500) 47182fe0 4d9b6d32

+16 -1
+16 -1
flake.nix
··· 12 12 { system, ... }: 13 13 let 14 14 pkgs = import nixpkgs { inherit system; }; 15 + fontsConf = 16 + with pkgs; 17 + makeFontsConf { 18 + fontDirectories = [ 19 + font-awesome 20 + roboto 21 + source-sans 22 + ]; 23 + }; 15 24 in 16 25 { 17 26 devShells.default = 18 27 with pkgs; 19 28 mkShell { 20 - buildInputs = [ typst typstPackages.fontawesome jujutsu ]; 29 + buildInputs = [ 30 + typst 31 + jujutsu 32 + ]; 33 + shellHook = '' 34 + export FONTCONFIG_FILE="${fontsConf}" 35 + ''; 21 36 }; 22 37 }; 23 38 };