tfcconnection/shell.nix
2022-10-25 12:43:06 -05:00

16 lines
169 B
Nix

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