initial commit

This commit is contained in:
Chris Cochrun 2022-10-25 12:43:06 -05:00
commit 18aa3c815b
5 changed files with 197 additions and 0 deletions

15
shell.nix Normal file
View file

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