tfcconnection-zola/shell.nix
2022-10-26 13:25:11 -05:00

17 lines
203 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
name = "tfc-env";
nativeBuildInputs = [
];
buildInputs = [
hugo
];
shellHook = ''
hss='hugo server --noHTTPCache'
'';
}