2015-07-27 11:57:46 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2016-10-20 18:54:38 +00:00
|
|
|
with import <stockholm/lib>;
|
2015-08-24 11:21:42 +00:00
|
|
|
|
2015-07-27 11:57:46 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
out = {
|
2017-02-22 20:57:48 +00:00
|
|
|
services.nginx.enable = true;
|
2015-07-27 11:57:46 +00:00
|
|
|
krebs.git = {
|
|
|
|
enable = true;
|
2016-06-07 01:14:21 +00:00
|
|
|
cgit = {
|
|
|
|
settings = {
|
|
|
|
root-title = "public repositories at ${config.krebs.build.host.name}";
|
|
|
|
root-desc = "keep calm and engage";
|
|
|
|
};
|
|
|
|
};
|
2015-08-24 11:21:42 +00:00
|
|
|
repos = mapAttrs (_: s: removeAttrs s ["collaborators"]) repos;
|
|
|
|
rules = rules;
|
2015-07-27 11:57:46 +00:00
|
|
|
};
|
2015-10-04 12:15:19 +00:00
|
|
|
|
|
|
|
krebs.iptables.tables.filter.INPUT.rules = [
|
|
|
|
{ predicate = "-i retiolum -p tcp --dport 80"; target = "ACCEPT"; }
|
|
|
|
];
|
2015-07-27 11:57:46 +00:00
|
|
|
};
|
|
|
|
|
2015-08-24 11:21:42 +00:00
|
|
|
repos =
|
2015-07-27 11:57:46 +00:00
|
|
|
public-repos //
|
2015-08-24 11:21:42 +00:00
|
|
|
optionalAttrs config.krebs.build.host.secure restricted-repos;
|
2015-07-27 11:57:46 +00:00
|
|
|
|
|
|
|
rules = concatMap make-rules (attrValues repos);
|
|
|
|
|
|
|
|
public-repos = mapAttrs make-public-repo {
|
2017-05-02 18:12:17 +00:00
|
|
|
news = {
|
|
|
|
cgit.desc = "take a rss feed and a timeout and print it to stdout";
|
|
|
|
cgit.section = "software";
|
|
|
|
};
|
2015-07-27 11:57:46 +00:00
|
|
|
stockholm = {
|
2016-06-07 01:14:21 +00:00
|
|
|
cgit.desc = "take all the computers hostage, they'll love you!";
|
2017-03-16 14:09:39 +00:00
|
|
|
cgit.section = "configuration";
|
2015-07-27 11:57:46 +00:00
|
|
|
};
|
2017-03-16 14:09:39 +00:00
|
|
|
the_playlist = {
|
|
|
|
cgit.desc = "Good Music collection + tools";
|
|
|
|
cgit.section = "art";
|
|
|
|
};
|
2017-04-30 18:04:06 +00:00
|
|
|
} // mapAttrs make-public-repo-silent {
|
2015-07-27 11:57:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
restricted-repos = mapAttrs make-restricted-repo (
|
|
|
|
{
|
|
|
|
brain = {
|
|
|
|
collaborators = with config.krebs.users; [ tv makefu ];
|
|
|
|
};
|
|
|
|
} //
|
2015-11-12 23:47:19 +00:00
|
|
|
import <secrets/repos.nix> { inherit config lib pkgs; }
|
2015-07-27 11:57:46 +00:00
|
|
|
);
|
|
|
|
|
2016-06-07 01:14:21 +00:00
|
|
|
make-public-repo = name: { cgit ? {}, ... }: {
|
|
|
|
inherit cgit name;
|
2015-07-27 11:57:46 +00:00
|
|
|
public = true;
|
|
|
|
hooks = {
|
2015-11-12 23:42:17 +00:00
|
|
|
post-receive = pkgs.git-hooks.irc-announce {
|
2015-07-27 11:57:46 +00:00
|
|
|
# TODO make nick = config.krebs.build.host.name the default
|
|
|
|
nick = config.krebs.build.host.name;
|
|
|
|
channel = "#retiolum";
|
2016-11-11 07:47:46 +00:00
|
|
|
server = "ni.r";
|
2015-11-13 10:08:56 +00:00
|
|
|
verbose = config.krebs.build.host.name == "prism";
|
2017-01-16 16:25:48 +00:00
|
|
|
# TODO define branches in some kind of option per repo
|
2017-03-14 19:53:16 +00:00
|
|
|
branches = [ "master" ];
|
2015-07-27 11:57:46 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-06-07 01:14:21 +00:00
|
|
|
make-public-repo-silent = name: { cgit ? {}, ... }: {
|
|
|
|
inherit cgit name;
|
2016-05-25 14:22:05 +00:00
|
|
|
public = true;
|
|
|
|
};
|
|
|
|
|
2016-06-07 01:14:21 +00:00
|
|
|
make-restricted-repo = name: { collaborators ? [], ... }: {
|
|
|
|
inherit collaborators name;
|
2015-07-27 11:57:46 +00:00
|
|
|
public = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
make-rules =
|
|
|
|
with git // config.krebs.users;
|
|
|
|
repo:
|
|
|
|
singleton {
|
2016-12-22 22:17:43 +00:00
|
|
|
user = [ lass lass-shodan ];
|
2015-07-27 11:57:46 +00:00
|
|
|
repo = [ repo ];
|
|
|
|
perm = push "refs/*" [ non-fast-forward create delete merge ];
|
|
|
|
} ++
|
|
|
|
optional repo.public {
|
2016-07-24 16:03:47 +00:00
|
|
|
user = attrValues config.krebs.users;
|
2015-07-27 11:57:46 +00:00
|
|
|
repo = [ repo ];
|
|
|
|
perm = fetch;
|
|
|
|
} ++
|
|
|
|
optional (length (repo.collaborators or []) > 0) {
|
|
|
|
user = repo.collaborators;
|
|
|
|
repo = [ repo ];
|
|
|
|
perm = fetch;
|
|
|
|
};
|
|
|
|
|
|
|
|
in out
|