feat: Add Nix shell configuration

This commit is contained in:
Thomas A. Christensen II 2023-03-31 22:28:40 -05:00
parent fe08fdd7bb
commit 0ecf9ad46f

8
default.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/994e2ef9e9c70b4dd7257f73452a94e871723685.tar.gz") {} }:
pkgs.mkShell {
buildInputs = [
pkgs.hugo
pkgs.nodejs
];
}