tfcconnection-zola/shell.nix
2023-05-23 16:55:54 -05:00

22 lines
269 B
Nix

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