all repos — website @ e41146152a3e65256ce1c0ce047454914e151439

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
    templ
    hyperlink
    just

    ko
    flyctl
  ];
}