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

29 lines
574 B
Nix
Raw Normal View History

2016-02-15 14:03:47 +01:00
{ config, lib, pkgs, ... }:
with lib;
{
krebs.repo-sync = let
# TODO addMirrorURL function
mirror = "git@wolf:stockholm-mirror";
in {
enable = true;
2016-07-07 23:51:20 +02:00
repos.stockholm = {
2016-02-15 14:03:47 +01:00
makefu = {
origin.url = http://cgit.gum/stockholm ;
mirror.url = mirror;
};
tv = {
2016-11-11 08:47:46 +01:00
origin.url = http://cgit.ni.r/stockholm;
2016-02-15 14:03:47 +01:00
mirror.url = mirror;
};
lassulus = {
origin.url = http://cgit.prism/stockholm ;
2016-02-15 14:03:47 +01:00
mirror.url = mirror;
};
"@latest" = {
mirror.url = mirror;
};
};
};
}