tfcconnection/shell.nix
2022-11-01 10:00:59 -05:00

18 lines
227 B
Nix

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