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