Move blog into website/blog

Nest the blog work within the website directory.
This commit is contained in:
William Carroll 2020-03-20 00:46:29 +00:00
parent 54d1a0048a
commit 95e761e59b
40 changed files with 2 additions and 3 deletions

8
website/blog/shell.nix Normal file
View file

@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
hugo
];
}