char/cv

git clone https://git.t4t.associates/char/cv

Charlotte Somnix + spruce up202d50b

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