tfcconnection/shell.nix

24 lines
290 B
Nix

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