{ pkgs ? (import <nixpkgs> { 
    config.allowUnfree = true;
}),
}:
pkgs.mkShell {
  pure = true;
  packages = with pkgs; [
    # Choose the build tools that you need
    act
  ];
}