diff options
author | sterni <sternenseemann@systemli.org> | 2023-01-12T18·30+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-01-15T17·37+0000 |
commit | 66d7cf4b58fe7cb195e1de2eab757b1ebc17d23e (patch) | |
tree | 9e4cb62c7c31af740f3241d38f63da9786218046 | |
parent | 43d83274e631bd8743d2e0b6445501ccbb4459b0 (diff) |
fix(sterni/machines/edwin): fix cgit default branch declarations r/5659
Change-Id: Icfd167e608955ec33367ca51dd8ae1d8d2740b4d Reviewed-on: https://cl.tvl.fyi/c/depot/+/7837 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Autosubmit: sterni <sternenseemann@systemli.org>
-rw-r--r-- | users/sterni/machines/edwin/http/code.sterni.lv.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/users/sterni/machines/edwin/http/code.sterni.lv.nix b/users/sterni/machines/edwin/http/code.sterni.lv.nix index 56a7b4887484..29e6be0d1628 100644 --- a/users/sterni/machines/edwin/http/code.sterni.lv.nix +++ b/users/sterni/machines/edwin/http/code.sterni.lv.nix @@ -14,7 +14,7 @@ let "mirror/depot" = { description = "monorepo for the virus lounge"; upstream = "https://code.tvl.fyi/depot.git"; - cgit.defaultBranch = "canon"; + cgit.defbranch = "canon"; }; "mirror/flipdot-gschichtler" = { description = "message queue system for OpenLab's flipdot display"; @@ -40,12 +40,12 @@ let }; haskell-dot-time = { description = "UTC-centric time library for haskell with dot time support"; - cgit.defaultBranch = "main"; + cgit.defbranch = "main"; }; buchstabensuppe = { description = "toy font rendering for low pixelcount, high contrast displays"; - cgit.defaultBranch = "main"; upstream = "https://github.com/sternenseemann/buchstabensuppe.git"; + cgit.defbranch = "main"; }; "mirror/saneterm" = { description = "modern line-oriented terminal emulator without support for TUIs"; @@ -130,6 +130,7 @@ let lib.concatMapStringsSep "\n" (section: '' section=${section.section} + '' + builtins.concatStringsSep "\n\n" (lib.mapAttrsToList cgitRepoEntry section.repos) ) repoSections |