summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/cgit-retiolum.nix
blob: 777c16cfb327010ffc7327e1128786b0a28afefb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{ config, lib, pkgs, ... }:
# TODO: remove tv lib :)
with import ../../tv/4lib { inherit lib pkgs; };
let

  repos = priv-repos // krebs-repos ;
  rules = concatMap krebs-rules (attrValues krebs-repos) ++ concatMap priv-rules (attrValues priv-repos);

  krebs-repos = mapAttrs make-krebs-repo {
    stockholm = {
      desc = "take all the computers hostage, they'll love you!";
    };
  };

  priv-repos = mapAttrs make-priv-repo {
    autosync = { };
  };


  # TODO move users to separate module
  make-priv-repo = name: { desc ? null, ... }: {
    inherit name desc;
    public = false;
  };

  make-krebs-repo = with git; name: { desc ? null, ... }: {
    inherit name desc;
    public = true;
    hooks = {
      post-receive = git.irc-announce {
        nick = config.networking.hostName;
        channel = "#retiolum";
        server = "cd.retiolum";
      };
    };
  };

  set-owners = with git; repo: user:
      singleton {
        inherit user;
        repo = [ repo ];
        perm = push "refs/*" [ non-fast-forward create delete merge ];
      };

  set-ro-access = with git; repo: user:
      optional repo.public {
        inherit user;
        repo = [ repo ];
        perm = fetch;
      };

  # TODO: get the list of all krebsministers
  krebsminister = with config.krebs.users; [ lass tv uriel ];

  priv-rules = with config.krebs.users; repo:
    set-owners repo [ makefu ];

  krebs-rules = with config.krebs.users; repo:
    set-owners repo [ makefu ] ++ set-ro-access repo krebsminister ;

in {
  imports = [ ../../3modules/krebs/git.nix ];
  krebs.git = {
    enable = true;
    root-title = "public repositories ";
    root-desc = "keep on krebsing";
    inherit repos rules;
  };
}
[cgit] Unable to lock slot /tmp/cgit/ad200000.lock: No such file or directory (2)