diff options
| author | lassulus <lass@aidsballs.de> | 2016-06-30 21:51:09 +0200 |
|---|---|---|
| committer | lassulus <lass@aidsballs.de> | 2016-06-30 21:51:09 +0200 |
| commit | 6697cab3f499c5358e10dd3fd35f0f463df47a1f (patch) | |
| tree | 7a2fcfc378cb25e3b740f7a59f4717c7b51366a6 /mv/2configs/git.nix | |
| parent | 4bf71ffd9e49e2b86a7675e10417049ed066a228 (diff) | |
| parent | c564bd17a8c169d1aafcd2db94dc8571a0e54293 (diff) | |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'mv/2configs/git.nix')
| -rw-r--r-- | mv/2configs/git.nix | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/mv/2configs/git.nix b/mv/2configs/git.nix deleted file mode 100644 index aee448c..0000000 --- a/mv/2configs/git.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ config, lib, pkgs, ... }: - -with config.krebs.lib; - -let - - out = { - krebs.git = { - enable = true; - cgit = { - settings = { - root-title = "public repositories at ${config.krebs.build.host.name}"; - root-desc = "Hmhmh, im Moment nicht."; - }; - }; - repos = mapAttrs (_: s: removeAttrs s ["collaborators"]) repos; - rules = rules; - }; - }; - - repos = public-repos; - - rules = concatMap make-rules (attrValues repos); - - public-repos = mapAttrs make-public-repo { - stockholm = {}; - }; - - make-public-repo = name: { cgit ? {}, ... }: { - inherit cgit name; - public = true; - hooks = { - post-receive = pkgs.git-hooks.irc-announce { - # TODO make nick = config.krebs.build.host.name the default - nick = config.krebs.build.host.name; - channel = "#retiolum"; - server = "cd.retiolum"; - verbose = config.krebs.build.host.name == "stro"; - }; - }; - }; - - make-rules = - with git // config.krebs.users; - repo: - singleton { - user = [ mv_stro ]; - repo = [ repo ]; - perm = push "refs/*" [ non-fast-forward create delete merge ]; - } ++ - optional repo.public { - user = [ lass makefu uriel tv tv-xu ]; - repo = [ repo ]; - perm = fetch; - } ++ - optional (length (repo.collaborators or []) > 0) { - user = repo.collaborators; - repo = [ repo ]; - perm = fetch; - }; - -in out |
