{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
  name = "tfc-env";

  nativeBuildInputs = [
  ];

  buildInputs = [
    hugo
    go
    nodejs
  ];
  
  shellHook = ''
  alias hss='hugo server --noHTTPCache'
  '';
}