summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-08-22 02:41:54 +0200
committerMel <mel@rnrd.eu>2025-08-22 02:41:54 +0200
commit053dcf87674a3c75245f87ee69beab197e8fb7a8 (patch)
tree0c7aef4fcb1061220ddb5be41bae60c1bd2e85d7 /modules
parent8a296d3aedd41558feb00626aa743b0fea774ef2 (diff)
downloadnetwork-053dcf87674a3c75245f87ee69beab197e8fb7a8.tar.zst
network-053dcf87674a3c75245f87ee69beab197e8fb7a8.zip
Add goatcounter tracker script to base renard HTML
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'modules')
-rw-r--r--modules/foundation/www/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/foundation/www/default.nix b/modules/foundation/www/default.nix
index 7a4ee01..97e2f2f 100644
--- a/modules/foundation/www/default.nix
+++ b/modules/foundation/www/default.nix
@@ -25,8 +25,13 @@ let
     env.me = util.titleCase me.name;
   };
 
+  default-page-index-w-goat = pkgs.concatText "base.html" [
+    default-page-index
+    ../../../assets/goat.html
+  ];
+
   default-page = pkgs.linkFarm "www-base" {
-    "index.html" = default-page-index;
+    "index.html" = default-page-index-w-goat;
     "favicon.png" = ../../../assets/favicon.png;
   };