msfjarvis.dev/shell.nix

12 lines
140 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
git
go
hugo
imagemagick
nodejs-16_x
];
}