diff options
author | William Carroll <wpcarro@gmail.com> | 2020-07-20T09·26+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-07-20T13·38+0100 |
commit | c6106f7884fab3048ccce14dd56a193e706fbaac (patch) | |
tree | 473254a350490ce6956a656370fe695bf7cb0bdf | |
parent | 5add8ddc13be3a7a5fbb6deb3f70cb18594f8750 (diff) |
Create //playbooks
I'm particularly excited about this idea. As I was reading Graham's "Erase your darlings" blog post, I had an idea: I should have playbooks at the root of my monorepo. I can have playbooks for the following: - How to install NixOS - How to build GCR images from Nix expressions - A collection of miscellaneous shell commands (e.g. "how to kill a process by name") - What series of steps should I follow when I receive a paycheck I already keep README's at the root of each package, which I think is where many of these instructions belong. Other tutorials that I write for myself that do not belong to any package can go in //playbooks. I also will host my personal habits in //playbooks since habits are a bit like playbooks for life. Let's see how this idea ages as the caffeine wears off...
-rw-r--r-- | playbooks/README.md | 3 | ||||
-rw-r--r-- | playbooks/finances.org (renamed from org/finances.org) | 0 | ||||
-rw-r--r-- | playbooks/first-of-the-month.org (renamed from org/first-of-the-month.org) | 0 | ||||
-rw-r--r-- | playbooks/habits.org (renamed from org/habits.org) | 0 | ||||
-rw-r--r-- | playbooks/nix_gcr/README.md (renamed from nix_gcr/README.md) | 0 | ||||
-rw-r--r-- | playbooks/nix_gcr/cloud_run.nix (renamed from nix_gcr/cloud_run.nix) | 0 | ||||
-rw-r--r-- | playbooks/nix_gcr/config.lisp (renamed from nix_gcr/config.lisp) | 0 | ||||
-rw-r--r-- | website/habits/default.nix | 2 |
8 files changed, 4 insertions, 1 deletions
diff --git a/playbooks/README.md b/playbooks/README.md new file mode 100644 index 000000000000..70a26c8e8914 --- /dev/null +++ b/playbooks/README.md @@ -0,0 +1,3 @@ +# playbooks + +Here's the vision: playbooks for everything - not just software. diff --git a/org/finances.org b/playbooks/finances.org index 4622ce06d87f..4622ce06d87f 100644 --- a/org/finances.org +++ b/playbooks/finances.org diff --git a/org/first-of-the-month.org b/playbooks/first-of-the-month.org index 98d6d591f244..98d6d591f244 100644 --- a/org/first-of-the-month.org +++ b/playbooks/first-of-the-month.org diff --git a/org/habits.org b/playbooks/habits.org index 3b6f6f680e4d..3b6f6f680e4d 100644 --- a/org/habits.org +++ b/playbooks/habits.org diff --git a/nix_gcr/README.md b/playbooks/nix_gcr/README.md index 9d111cf6bba5..9d111cf6bba5 100644 --- a/nix_gcr/README.md +++ b/playbooks/nix_gcr/README.md diff --git a/nix_gcr/cloud_run.nix b/playbooks/nix_gcr/cloud_run.nix index 70be4040c36b..70be4040c36b 100644 --- a/nix_gcr/cloud_run.nix +++ b/playbooks/nix_gcr/cloud_run.nix diff --git a/nix_gcr/config.lisp b/playbooks/nix_gcr/config.lisp index 54f8e5f34462..54f8e5f34462 100644 --- a/nix_gcr/config.lisp +++ b/playbooks/nix_gcr/config.lisp diff --git a/website/habits/default.nix b/website/habits/default.nix index 71329c7963d5..c9e56bb0e828 100644 --- a/website/habits/default.nix +++ b/website/habits/default.nix @@ -2,7 +2,7 @@ pkgs.stdenv.mkDerivation { name = "habits-webpage"; - src = builtins.path { path ../../org; name = "org"; }; + src = builtins.path { path = ../../playbooks; name = "playbooks"; }; buildInputs = []; buildPhase = '' ${pkgs.pandoc}/bin/pandoc $src/habits.org -o index.html |