diff options
author | tv <tv@krebsco.de> | 2016-06-07 03:14:21 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-06-07 22:38:38 +0200 |
commit | 6414fec210adceee21e3724909cf865b44c771cf (patch) | |
tree | e52438d5a874477db425ebde901d126599d38c2e /miefda/2configs | |
parent | 06a7bdf7964695f198357b6985bf2594b3484e13 (diff) |
krebs.git.cgit: make `cache-root` configurable
... along with all the other stuff :)
Diffstat (limited to 'miefda/2configs')
-rw-r--r-- | miefda/2configs/git.nix | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/miefda/2configs/git.nix b/miefda/2configs/git.nix index 052cc4a..51679d2 100644 --- a/miefda/2configs/git.nix +++ b/miefda/2configs/git.nix @@ -7,8 +7,12 @@ let out = { krebs.git = { enable = true; - root-title = "public repositories at ${config.krebs.build.host.name}"; - root-desc = "keep calm and engage"; + cgit = { + settings = { + root-title = "public repositories at ${config.krebs.build.host.name}"; + root-desc = "keep calm and engage"; + }; + }; repos = mapAttrs (_: s: removeAttrs s ["collaborators"]) repos; rules = rules; }; @@ -27,7 +31,7 @@ let public-repos = mapAttrs make-public-repo { painload = {}; stockholm = { - desc = "take all the computers hostage, they'll love you!"; + cgit.desc = "take all the computers hostage, they'll love you!"; }; #wai-middleware-time = {}; #web-routes-wai-custom = {}; @@ -46,8 +50,8 @@ let import <secrets/repos.nix> { inherit config lib pkgs; } ); - make-public-repo = name: { desc ? null, ... }: { - inherit name desc; + make-public-repo = name: { cgit ? {}, ... }: { + inherit cgit name; public = true; hooks = { post-receive = pkgs.git-hooks.irc-announce { @@ -60,8 +64,8 @@ let }; }; - make-restricted-repo = name: { collaborators ? [], desc ? null, ... }: { - inherit name collaborators desc; + make-restricted-repo = name: { collaborators ? [], ... }: { + inherit collaborators name; public = false; }; |