aboutsummaryrefslogtreecommitdiffstats
path: root/content/blog/01-hello-world/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/01-hello-world/index.md')
-rw-r--r--content/blog/01-hello-world/index.md16
1 files changed, 12 insertions, 4 deletions
diff --git a/content/blog/01-hello-world/index.md b/content/blog/01-hello-world/index.md
index adb9d3f..08aa644 100644
--- a/content/blog/01-hello-world/index.md
+++ b/content/blog/01-hello-world/index.md
@@ -1,8 +1,9 @@
---
-author: Alexandre D. B. Jesus
+author: Alexandre Jesus
date: 2022-08-29
slug: hello-world
title: Hello, world!
+updated: 2023-08-01
---
I have been thinking of starting a blog for a while, mostly to write
@@ -11,8 +12,8 @@ improve my writing skills. I expect to mostly write about Programming,
Emacs, Linux, and other tech topics. But we will see where it goes.
In this first post I will quickly go over the implementation and
-deployment of this site. Note that, you can find the code for this site
-at <https://git.adbjesus.com/website>.
+deployment of this site. You can find the source code for the website at
+<https://git.adbjesus.com/adbjesus.com>.
### Static Site Generator
@@ -114,7 +115,9 @@ You can find the Org source for this post [here](index.org).
I deploy this site to my [NixOS](https://nixos.org) server using the
declarative NixOS configuration capabilities. For this I have a
-`flake.nix` in the repository of this site:
+`flake.nix` in the repository of this site (edit: as of 2023-08-01 the
+flake no longer uses flake-utils but the idea is the same, you can check
+the latest version on the repository):
``` nix
{
@@ -185,3 +188,8 @@ services.nginx.virtualHosts = {
In the future, I will write more about my NixOS configuration using
flakes, which I use to manage my personal computers and server.
+
+### Edits
+
+- 2023-01-08: Updated the link to the website, added note stating that I
+ no longer use flake-utils.