Skip to content

Commit 82f5366

Browse files
committed
chore: add nix development setup
1 parent b5df6ff commit 82f5366

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
public
22
_gen
33
node_modules
4+
.direnv
5+
.envrc

shell.nix

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{ pkgs ? import <nixpkgs> { } }:
2+
pkgs.mkShell {
3+
nativeBuildInputs = with pkgs; ([ hugo nodejs ] ++ (with nodePackages; [ yarn ]));
4+
}

0 commit comments

Comments
 (0)