tfcconnection-zola/shell.nix
2022-10-27 06:35:06 -05:00

18 lines
210 B
Nix

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