AnthoLume/shell.nix

10 lines
111 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
go
zig
nodejs_20
];
}