about summary refs log tree commit diff
path: root/web/tvl/blog/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-11-05T13·19+0100
committertazjin <mail@tazj.in>2021-11-08T10·39+0000
commit875ef0a605c298e3033ef950119092d09e21f306 (patch)
treed81aaa06061953fad90a5b8f165cd31d023c5eb9 /web/tvl/blog/default.nix
parentbb980158a785b0ce23d25fa0f74c996311df7a67 (diff)
fix(web/blog): make base URL configurable for atom feeds r/3025
This was previously hardcoded to tazj.in, which is not going to work
of course.

Instead it now takes the blog config which has a new baseUrl
parameter. For ease of use, the configs of my and the TVL blog have
been moved into a location that is accessible in the tree for reuse.

Change-Id: I94e71aaa7859db4380eb7013740a17f6b6a02620
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3777
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web/tvl/blog/default.nix')
-rw-r--r--web/tvl/blog/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/tvl/blog/default.nix b/web/tvl/blog/default.nix
index fac627a940..cedfc6b417 100644
--- a/web/tvl/blog/default.nix
+++ b/web/tvl/blog/default.nix
@@ -1,6 +1,12 @@
 { depot, ... }:
 
 {
+  config = {
+    name = "TVL's blog";
+    footer = depot.web.tvl.footer {};
+    baseUrl = "https://tvl.fyi/blog";
+  };
+
   posts = [
     {
       key = "kicking-off-tvix";