stockholm/tv/2configs/git.nix

95 lines
2.2 KiB
Nix
Raw Normal View History

2015-07-11 14:55:22 +00:00
{ config, lib, pkgs, ... }:
2015-07-24 18:48:00 +00:00
2015-07-28 18:40:25 +00:00
with import ../4lib { inherit lib pkgs; };
2015-07-11 14:55:22 +00:00
let
2015-07-23 22:24:12 +00:00
out = {
2015-07-24 09:44:49 +00:00
krebs.git = {
2015-07-23 22:24:12 +00:00
enable = true;
root-title = "public repositories at ${config.krebs.build.host.name}";
2015-07-23 22:24:12 +00:00
root-desc = "keep calm and engage";
2015-08-24 09:22:05 +00:00
repos = mapAttrs (_: s: removeAttrs s ["collaborators"]) repos;
rules = rules;
2015-07-23 22:24:12 +00:00
};
2015-07-11 14:55:22 +00:00
};
2015-08-24 09:22:05 +00:00
repos =
2015-07-24 17:33:20 +00:00
public-repos //
2015-08-24 09:22:05 +00:00
optionalAttrs config.krebs.build.host.secure restricted-repos;
2015-07-24 17:33:20 +00:00
2015-07-23 22:24:12 +00:00
rules = concatMap make-rules (attrValues repos);
2015-07-11 14:55:22 +00:00
2015-07-23 22:24:12 +00:00
public-repos = mapAttrs make-public-repo {
2015-08-05 22:11:26 +00:00
cac = {
desc = "CloudAtCost command line interface";
};
2015-07-23 22:24:12 +00:00
cgserver = {};
crude-mail-setup = {};
dot-xmonad = {};
2015-09-25 20:56:28 +00:00
get = {};
2015-07-23 22:24:12 +00:00
hack = {};
load-env = {};
make-snapshot = {};
mime = {};
much = {};
nixos-infest = {};
nixpkgs = {};
painload = {};
quipper = {};
regfish = {};
stockholm = {
desc = "take all the computers hostage, they'll love you!";
};
wai-middleware-time = {};
web-routes-wai-custom = {};
xintmap = {};
};
2015-07-11 14:55:22 +00:00
2015-07-24 17:33:20 +00:00
restricted-repos = mapAttrs make-restricted-repo (
{
brain = {
2015-07-24 18:48:00 +00:00
collaborators = with config.krebs.users; [ lass makefu ];
2015-07-24 17:33:20 +00:00
};
} //
2015-07-24 18:48:00 +00:00
import /root/src/secrets/repos.nix { inherit config lib pkgs; }
2015-07-24 17:33:20 +00:00
);
2015-07-23 22:24:12 +00:00
make-public-repo = name: { desc ? null, ... }: {
inherit name desc;
public = true;
hooks = {
post-receive = git.irc-announce {
# TODO make nick = config.krebs.build.host.name the default
nick = config.krebs.build.host.name;
2015-07-23 22:24:12 +00:00
channel = "#retiolum";
server = "cd.retiolum";
2015-07-11 14:55:22 +00:00
};
};
2015-07-23 22:24:12 +00:00
};
2015-07-11 14:55:22 +00:00
2015-08-24 09:22:05 +00:00
make-restricted-repo = name: { collaborators ? [], desc ? null, ... }: {
inherit name collaborators desc;
2015-07-24 17:33:20 +00:00
public = false;
};
2015-07-23 22:24:12 +00:00
make-rules =
2015-07-24 18:48:00 +00:00
with git // config.krebs.users;
2015-07-23 22:24:12 +00:00
repo:
singleton {
user = tv;
repo = [ repo ];
perm = push "refs/*" [ non-fast-forward create delete merge ];
} ++
optional repo.public {
user = [ lass makefu uriel ];
repo = [ repo ];
perm = fetch;
2015-07-24 17:33:20 +00:00
} ++
optional (length (repo.collaborators or []) > 0) {
user = repo.collaborators;
repo = [ repo ];
perm = fetch;
2015-07-23 22:24:12 +00:00
};
2015-07-11 14:55:22 +00:00
2015-07-23 22:24:12 +00:00
in out