Files
Miguel Palhas 7ab89c1f28 Adding foundry
2024-10-04 17:51:23 +01:00

7 lines
187 B
Nix

{ pkgs }: {
default = pkgs.mkShell {
NIX_CONFIG = "experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [ nix home-manager git foundry-bin solc ];
};
}