bd67b07f52
Commands like `nix-shell shell.nix` couldn't resolve `pkgs` without a default value. I'm unsure how I expected this to work previously...
10 lines
133 B
Nix
10 lines
133 B
Nix
{ pkgs ? import <nixpkgs> {}, ... }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
python3
|
|
go
|
|
goimports
|
|
];
|
|
}
|