msfjarvis.dev/shell.nix

14 lines
158 B
Nix

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