7 lines
187 B
Nix
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 ];
|
|
};
|
|
}
|