about summary refs log tree commit diff
path: root/website
diff options
context:
space:
mode:
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
-  '';
-}