From 2bae236aecdf6ee79fa36ada951d1046cd311e4c Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 18 Sep 2025 15:54:10 -0600 Subject: [PATCH 1/4] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'homepage': 'git+https://git.posixlycorrect.com/fabian/homepage.git?ref=refs/heads/master&rev=04577fd42db03c89eca4f87f6c83d282df686a49' (2025-09-18) → 'git+https://git.posixlycorrect.com/fabian/homepage.git?ref=refs/heads/master&rev=d6631b2ab1f074f1bf0f69efef070948f01a0013' (2025-09-18) --- flake.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 6dbc1cc..3a927b4 100644 --- a/flake.lock +++ b/flake.lock @@ -238,11 +238,11 @@ ] }, "locked": { - "lastModified": 1758231157, - "narHash": "sha256-7iMBkMqnbbQDVosbYqq8pclLr8F5IE7jUZqTNPpL/rg=", + "lastModified": 1758232412, + "narHash": "sha256-IE5+eP+bilqS/8xTwk7M6rs+d59vmJymkazTIDrCtMY=", "ref": "refs/heads/master", - "rev": "04577fd42db03c89eca4f87f6c83d282df686a49", - "revCount": 63, + "rev": "d6631b2ab1f074f1bf0f69efef070948f01a0013", + "revCount": 64, "type": "git", "url": "https://git.posixlycorrect.com/fabian/homepage.git" }, From f66fe7f7aad3168ec10a5c2be47acd44e7192e9f Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 18 Sep 2025 16:51:15 -0600 Subject: [PATCH 2/4] fix typo in isso endpoint --- sys/platforms/vps/srv/isso.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/platforms/vps/srv/isso.nix b/sys/platforms/vps/srv/isso.nix index 43e85a0..eb6e23c 100644 --- a/sys/platforms/vps/srv/isso.nix +++ b/sys/platforms/vps/srv/isso.nix @@ -23,7 +23,7 @@ with lib; { enable = true; settings = { general = { - host = "https://posixlycorrect.com"; + host = "https://posixlycorrect.com/"; dbpath = "/var/lib/isso/comments.db"; notify = "stdout"; }; From e0814f893446d126f5ec22e9abcfaf347fc9b677 Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 18 Sep 2025 16:51:46 -0600 Subject: [PATCH 3/4] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'homepage': 'git+https://git.posixlycorrect.com/fabian/homepage.git?ref=refs/heads/master&rev=d6631b2ab1f074f1bf0f69efef070948f01a0013' (2025-09-18) → 'git+https://git.posixlycorrect.com/fabian/homepage.git?ref=refs/heads/master&rev=be5ce1122f40801803f9455a4e0de55f68876645' (2025-09-18) --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 3a927b4..ad374f0 100644 --- a/flake.lock +++ b/flake.lock @@ -238,10 +238,10 @@ ] }, "locked": { - "lastModified": 1758232412, - "narHash": "sha256-IE5+eP+bilqS/8xTwk7M6rs+d59vmJymkazTIDrCtMY=", + "lastModified": 1758235861, + "narHash": "sha256-91Gvygx8kbSmli10SPr9KbV1Uz5cz2JZ9s/EdjFtRRw=", "ref": "refs/heads/master", - "rev": "d6631b2ab1f074f1bf0f69efef070948f01a0013", + "rev": "be5ce1122f40801803f9455a4e0de55f68876645", "revCount": 64, "type": "git", "url": "https://git.posixlycorrect.com/fabian/homepage.git" From 53e72627b03d6a3428240613e0747e532a79c67d Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 18 Sep 2025 16:54:32 -0600 Subject: [PATCH 4/4] vps: make email mandatory in isso --- sys/platforms/vps/srv/isso.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/platforms/vps/srv/isso.nix b/sys/platforms/vps/srv/isso.nix index eb6e23c..6715e85 100644 --- a/sys/platforms/vps/srv/isso.nix +++ b/sys/platforms/vps/srv/isso.nix @@ -37,6 +37,7 @@ with lib; { }; guard = { require-author = true; + require-email = true; }; }; };