Added default.nix to have a nice dev shell in NixOS.

This commit is contained in:
baldo 2016-05-13 21:17:07 +02:00
parent 40925b73ec
commit 048112613d

9
default.nix Normal file
View file

@ -0,0 +1,9 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "start.ffhh";
buildInputs = [
jekyll
];
}