tfcconnection/shell.nix
2023-04-02 11:53:29 +00:00

19 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'
'';
}