diff options
| author | makefu <github@syntax-fehler.de> | 2016-02-15 14:03:47 +0100 | 
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2016-02-15 14:03:47 +0100 | 
| commit | 859144f1d0ca1fd2065f9dfa74cf14cd5af0cc1d (patch) | |
| tree | e130bd80cd711fb8a4dff2040aaec43633b0256a | |
| parent | 9f2603eb7b1fb4f9161ee896fa5b9081afc3d5d0 (diff) | |
s 2 repo-sync: init
| -rw-r--r-- | shared/1systems/wolf.nix | 1 | ||||
| -rw-r--r-- | shared/2configs/repo-sync.nix | 28 | 
2 files changed, 29 insertions, 0 deletions
| diff --git a/shared/1systems/wolf.nix b/shared/1systems/wolf.nix index 9a514428a..588ec1b55 100644 --- a/shared/1systems/wolf.nix +++ b/shared/1systems/wolf.nix @@ -13,6 +13,7 @@ in      ../2configs/shack-drivedroid.nix      ../2configs/shared-buildbot.nix      ../2configs/cgit-mirror.nix +    ../2configs/repo-sync.nix      # ../2configs/graphite.nix    ];    # use your own binary cache, fallback use cache.nixos.org (which is used by diff --git a/shared/2configs/repo-sync.nix b/shared/2configs/repo-sync.nix new file mode 100644 index 000000000..b23cb1675 --- /dev/null +++ b/shared/2configs/repo-sync.nix @@ -0,0 +1,28 @@ +{ config, lib, pkgs, ... }: + +with lib; +{ +  krebs.repo-sync = let +    # TODO addMirrorURL function +    mirror = "git@wolf:stockholm-mirror"; +  in { +    enable = true; +    config = { +      makefu = { +        origin.url = http://cgit.gum/stockholm ; +        mirror.url = mirror; +      }; +      tv = { +        origin.url = http://cgit.cd/stockholm ; +        mirror.url = mirror; +      }; +      lassulus = { +        origin.url = http://cgit.cloudkrebs/stockholm ; +        mirror.url = mirror; +      }; +      "@latest" = { +        mirror.url = mirror; +      }; +    }; +  }; +} | 
