stockholm/krebs/2configs/repo-sync.nix

81 lines
1.9 KiB
Nix
Raw Normal View History

2016-02-15 13:03:47 +00:00
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
let
mirror = "git@${config.networking.hostName}:";
defineRepo = name: announce: let
repo = {
public = true;
name = mkDefault "${name}";
cgit.desc = mkDefault "mirror for ${name}";
cgit.section = mkDefault "mirror";
hooks = mkIf announce (mkDefault {
post-receive = pkgs.git-hooks.irc-announce {
nick = config.networking.hostName;
verbose = false;
2017-10-01 12:26:12 +00:00
channel = "#xxx";
2017-10-01 11:41:41 +00:00
server = "irc.r";
2017-07-27 17:43:23 +00:00
branches = [ "master" ];
2017-03-07 23:52:31 +00:00
};
});
};
in {
rules = with git; singleton {
user = with config.krebs.users; [
config.krebs.users."${config.networking.hostName}-repo-sync"
];
repo = [ repo ];
perm = push ''refs/*'' [ non-fast-forward create delete merge ];
};
repos."${name}" = repo;
};
sync-retiolum = name:
{
krebs.repo-sync.repos.${name} = {
branches = {
makefu = {
origin.url = "http://cgit.gum/${name}";
mirror.url = "${mirror}${name}";
};
tv = {
origin.url = "http://cgit.ni.r/${name}";
mirror.url = "${mirror}${name}";
};
nin = {
origin.url = "http://cgit.onondaga.r/${name}";
mirror.url = "${mirror}${name}";
};
lassulus = {
origin.url = "http://cgit.lassul.us/${name}";
mirror.url = "${mirror}${name}";
};
2017-03-07 23:52:31 +00:00
};
latest = {
url = "${mirror}${name}";
2017-07-27 17:43:23 +00:00
ref = "heads/master";
2017-03-07 23:52:31 +00:00
};
2016-02-15 13:03:47 +00:00
};
2018-01-11 10:22:46 +00:00
krebs.git = defineRepo name false;
2016-02-15 13:03:47 +00:00
};
in {
krebs.repo-sync = {
enable = true;
2016-02-15 13:03:47 +00:00
};
2017-07-22 18:37:20 +00:00
krebs.git = {
enable = mkDefault true;
cgit = {
settings = {
root-title = "Shared Repos";
root-desc = "keep on krebsing";
};
};
};
imports = [
(sync-retiolum "stockholm")
];
2016-02-15 13:03:47 +00:00
}