tfcconnection/shell.nix

19 lines
230 B
Nix

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