95e761e59b
Nest the blog work within the website directory.
8 lines
97 B
Nix
8 lines
97 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
hugo
|
|
];
|
|
}
|