about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <git@emile.space>2024-09-29 00:02:43 +0200
committerEmile <git@emile.space>2024-09-29 00:02:43 +0200
commit84bd5a91b1f4c773e93b697487a9a18115b80a3c (patch)
treef57945c822556447181eb0b2b099eb30a08fb995
parent080ae016d6b281f06404da05b1e69ea0ad706650 (diff)
formatting
-rw-r--r--nix/hosts/corrino/www/cs.emile.space.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/nix/hosts/corrino/www/cs.emile.space.nix b/nix/hosts/corrino/www/cs.emile.space.nix
index 7aefc64..d07d9b2 100644
--- a/nix/hosts/corrino/www/cs.emile.space.nix
+++ b/nix/hosts/corrino/www/cs.emile.space.nix
@@ -2,18 +2,21 @@
 
 let
 
+  inherit (builtins) toJSON;
+  inherit (lib) mergeAttrsList mapAttrsToList;
+
   # get's all repos configured in cgit and converts them into some JSON that is used by hound
-  repos = builtins.toJSON (
-    lib.mergeAttrsList (
-      map
-        (x: {
-          "${x.name}" = {
-            url = "file://${x.path}";
-          };
-        })
-        (lib.mapAttrsToList (name: value: value // { name = "${name}"; }) config.services.cgit.main.repos)
+  repos = toJSON (
+    mergeAttrsList (
+      map (x: {
+        "${x.name}" = {
+          url = "file://${x.path}";
+        };
+      }) (mapAttrsToList (name: value: value // { name = "${name}"; }) config.services.cgit.main.repos)
     )
   );
+
+  cfg = config.services.hound;
 in
 {
   services.nginx.virtualHosts."cs.emile.space" = {
@@ -21,7 +24,7 @@ in
     enableACME = true;
     locations = {
       "/" = {
-        proxyPass = "http://${config.services.hound.listen}";
+        proxyPass = "http://${cfg.listen}";
       };
     };
   };