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

72 lines
1.7 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;
channel = "#retiolum";
server = "ni.r";
branches = [ "newest" ];
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}";
ref = "heads/newest";
2017-03-07 23:52:31 +00:00
};
2016-02-15 13:03:47 +00:00
};
krebs.git = defineRepo name true;
2016-02-15 13:03:47 +00:00
};
in {
krebs.repo-sync = {
enable = true;
2016-02-15 13:03:47 +00:00
};
imports = [
(sync-retiolum "stockholm")
];
2016-02-15 13:03:47 +00:00
}