Delete //website/habits

Accommodating space for my habit-screens project.
This commit is contained in:
William Carroll 2020-12-11 22:46:37 +00:00
parent 90035da32e
commit 3feb8ceb9a
2 changed files with 0 additions and 17 deletions

View file

@ -1,4 +0,0 @@
# habits
The Nix derivation defined herein outputs the webpage that you can visit at
https://wpcarro.dev/habits.

View file

@ -1,13 +0,0 @@
{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "habits-webpage";
src = builtins.path { path = ../../playbooks; name = "playbooks"; };
buildInputs = [];
buildPhase = ''
${pkgs.pandoc}/bin/pandoc $src/habits.org -o index.html
'';
installPhase = ''
mv index.html $out
'';
}