stockholm/lass/2configs/git.nix

145 lines
4.5 KiB
Nix
Raw Normal View History

2015-07-27 11:57:46 +00:00
{ config, lib, pkgs, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
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;
cgit = {
settings = {
root-title = "public repositories at ${config.krebs.build.host.name}";
root-desc = "keep calm and engage";
};
};
2017-09-19 09:42:50 +00:00
repos = repos;
rules = rules;
2015-07-27 11:57:46 +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
};
repos =
2015-07-27 11:57:46 +00:00
public-repos //
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";
};
2017-09-01 20:55:02 +00:00
nixpkgs = {
cgit.desc = "nixpkgs fork";
cgit.section = "configuration";
};
2017-09-08 22:26:09 +00:00
populate = {
cgit.section = "software";
};
2015-07-27 11:57:46 +00:00
stockholm = {
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-08-06 14:14:19 +00:00
stockholm-issues = {
cgit.desc = "stockholm issues";
cgit.section = "issues";
};
2017-03-16 14:09:39 +00:00
the_playlist = {
cgit.desc = "Good Music collection + tools";
cgit.section = "art";
};
2017-09-30 17:11:44 +00:00
nix-user-chroot = {
cgit.desc = "Fork of nix-user-chroot my lethalman";
cgit.section = "software";
};
2018-04-28 21:27:51 +00:00
nixos-aws = {
collaborators = [ {
name = "fabio";
pubkey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFst8DvnfOu4pQJYxcwdf//jWTvP+jj0iSrOdt59c9Gbujm/8K1mBXhcSQhHj/GBRC1Qc1wipf9qZsWnEHMI+SRwq6tDr8gqlAcdWmHAs1bU96jJtc8EgmUKbXTFG/VmympMPi4cEbNUtH93v6NUjQKwq9szvDhhqSW4Y8zE32xLkySwobQapNaUrGAtQp3eTxu5Lkx+cEaaartaAspt8wSosXjUHUJktg0O5/XOP+CiWAx89AXxbQCy4XTQvUExoRGdw9sdu0lF0/A0dF4lFF/dDUS7+avY8MrKEcQ8Fwk8NcW1XrKMmCdNdpvou0whL9aHCdTJ+522dsSB1zZWh63Si4CrLKlc1TiGKCXdvzmCYrD+6WxbPJdRpMM4dFNtpAwhCm/dM+CBXfDkP0s5veFiYvp1ri+3hUqV/sep9r5/+d+5/R1gQs8WDNjWqcshveFbD5LxE6APEySB4QByGxIrw7gFbozE+PNxtlVP7bq4MyE6yIzL6ofQgO1e4THquPcqSCfCvyib5M2Q1phi5DETlMemWp84AsNkqbhRa4BGRycuOXXrBzE+RgQokcIY7t3xcu3q0xJo2+HxW/Lqi72zYU1NdT4nJMETEaG49FfIAnUuoVaQWWvOz8mQuVEmmdw2Yzo2ikILYSUdHTp1VPOeo6aNPvESkPw1eM0xDRlQ== ada";
} ];
};
2018-05-01 14:04:48 +00:00
krops = {
cgit.desc = "krebs deployment";
cgit.section = "software";
};
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 ];
2017-07-17 12:53:14 +00:00
announce = true;
2015-07-27 11:57:46 +00:00
};
} //
2015-11-12 23:47:19 +00:00
import <secrets/repos.nix> { inherit config lib pkgs; }
2015-07-27 11:57:46 +00:00
);
make-public-repo = name: { cgit ? {}, collaborators ? [], ... }: {
inherit cgit collaborators 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;
2017-10-01 12:21:34 +00:00
channel = "#xxx";
2017-10-01 11:35:30 +00:00
server = "irc.r";
2018-01-23 19:00:14 +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
2018-01-23 19:00:14 +00:00
branches = [ "master" ];
2015-07-27 11:57:46 +00:00
};
};
};
make-public-repo-silent = name: { cgit ? {}, ... }: {
inherit cgit name;
public = true;
};
2017-09-19 09:42:50 +00:00
make-restricted-repo = name: { admins ? [], collaborators ? [], announce ? false, hooks ? {}, ... }: {
inherit admins collaborators name;
2015-07-27 11:57:46 +00:00
public = false;
2017-07-17 12:53:14 +00:00
hooks = optionalAttrs announce {
post-receive = pkgs.git-hooks.irc-announce {
# TODO make nick = config.krebs.build.host.name the default
nick = config.krebs.build.host.name;
2017-10-01 12:21:34 +00:00
channel = "#xxx";
2017-10-01 11:35:30 +00:00
server = "irc.r";
2018-01-16 19:58:10 +00:00
verbose = false;
2017-07-17 12:53:14 +00:00
# TODO define branches in some kind of option per repo
branches = [ "master" "staging*" ];
};
} // hooks;
2015-07-27 11:57:46 +00:00
};
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 ];
} ++
2017-09-19 09:42:50 +00:00
optional (length (repo.admins or []) > 0) {
user = repo.admins;
2015-07-27 11:57:46 +00:00
repo = [ repo ];
2017-09-19 09:42:50 +00:00
perm = push "refs/*" [ non-fast-forward create delete merge ];
2015-07-27 11:57:46 +00:00
} ++
optional (length (repo.collaborators or []) > 0) {
user = repo.collaborators;
repo = [ repo ];
perm = fetch;
2017-09-19 09:42:50 +00:00
} ++
optional repo.public {
user = attrValues config.krebs.users;
repo = [ repo ];
perm = fetch;
2015-07-27 11:57:46 +00:00
};
in out