char/cv
git clone https://git.t4t.associates/char/cv
202d50b
main
1{ 2description = "Typst CV document" ; 3 4inputs = { 5nixpkgs . url = "github:NixOS/nixpkgs/nixpkgs-unstable" ; 6}; 7 8outputs = 9{ self , nixpkgs } : 10let 11system = "x86_64-linux" ; 12pkgs = nixpkgs . legacyPackages .${ system }; 13in 14{ 15devShells .${ system }. default = pkgs . mkShell { 16packages = with pkgs ; [ 17typst 18inter 19]; 20 21shellHook = '' 22export TYPST_FONT_PATHS =" ${ pkgs . inter } /share/fonts:/x/fonts/tx02 " 23'' ; 24}; 25}; 26}