all repos — website @ 0933709f3d385270be76124c08298682ef4671af

My website

ci.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs ? (
    let
      sources = import ./npins;
    in
    import sources.nixpkgs { }
  )
}:
pkgs.mkShell {
  packages = with pkgs; [
    go_1_23
    templ
    hyperlink
    just

    ko
    flyctl
  ];
}