about summary refs log tree commit diff
path: root/website
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-12-11T22·46+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-12-11T22·46+0000
commit3feb8ceb9a6bbaa48927188de4806c8573f499a5 (patch)
tree331ead973d5dc866128bbccaef430c30f7b87529 /website
parent90035da32e05993a3b09ee5bb2c740e1f07b0f11 (diff)
Delete //website/habits
Accommodating space for my habit-screens project.
Diffstat (limited to 'website')
-rw-r--r--website/habits/README.md4
-rw-r--r--website/habits/default.nix13
2 files changed, 0 insertions, 17 deletions
diff --git a/website/habits/README.md b/website/habits/README.md
deleted file mode 100644
index f846640ab212..000000000000
--- a/website/habits/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-# habits
-
-The Nix derivation defined herein outputs the webpage that you can visit at
-https://wpcarro.dev/habits.
diff --git a/website/habits/default.nix b/website/habits/default.nix
deleted file mode 100644
index c9e56bb0e828..000000000000
--- a/website/habits/default.nix
+++ /dev/null
@@ -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
-  '';
-}