diff options
-rw-r--r-- | blog/.envrc | 2 | ||||
-rw-r--r-- | blog/shell.nix | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/blog/.envrc b/blog/.envrc new file mode 100644 index 000000000000..b80e28b4b815 --- /dev/null +++ b/blog/.envrc @@ -0,0 +1,2 @@ +source_up +eval "$(lorri direnv)" diff --git a/blog/shell.nix b/blog/shell.nix new file mode 100644 index 000000000000..d1b4f49942bc --- /dev/null +++ b/blog/shell.nix @@ -0,0 +1,8 @@ +let + pkgs = import <nixpkgs> {}; +in +pkgs.mkShell { + buildInputs = with pkgs; [ + hugo + ]; +} |