summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2015-07-27 13:57:46 +0200
committerlassulus <lass@aidsballs.de>2015-07-27 13:57:46 +0200
commit611ae1101e303c860624c39a62c745420a37cd18 (patch)
tree11a0884ea4e927e5347263b8e409bfc642ed618b
parentcee80c3a67ba9d097733e9c42fa740729803f393 (diff)
1 lass: use new-repos.nix
-rw-r--r--1systems/lass/cloudkrebs.nix1
-rw-r--r--1systems/lass/mors.nix2
-rw-r--r--1systems/lass/uriel.nix2
-rw-r--r--2configs/lass/new-repos.nix77
4 files changed, 80 insertions, 2 deletions
diff --git a/1systems/lass/cloudkrebs.nix b/1systems/lass/cloudkrebs.nix
index ba32ae57..2c755d8c 100644
--- a/1systems/lass/cloudkrebs.nix
+++ b/1systems/lass/cloudkrebs.nix
@@ -7,6 +7,7 @@
../../2configs/lass/base.nix
../../2configs/lass/retiolum.nix
../../2configs/lass/fastpoke-pages.nix
+ ../../2configs/lass/new-repos.nix
{
networking.interfaces.enp2s1.ip4 = [
{
diff --git a/1systems/lass/mors.nix b/1systems/lass/mors.nix
index 882cb9ff..ee2184af 100644
--- a/1systems/lass/mors.nix
+++ b/1systems/lass/mors.nix
@@ -17,7 +17,7 @@
../../2configs/lass/binary-caches.nix
../../2configs/lass/ircd.nix
../../2configs/lass/chromium-patched.nix
- ../../2configs/lass/git-repos.nix
+ ../../2configs/lass/new-repos.nix
../../2configs/tv/synaptics.nix
../../2configs/lass/retiolum.nix
];
diff --git a/1systems/lass/uriel.nix b/1systems/lass/uriel.nix
index d8858b4f..4fe8cf21 100644
--- a/1systems/lass/uriel.nix
+++ b/1systems/lass/uriel.nix
@@ -9,7 +9,7 @@ with builtins;
../../2configs/lass/pass.nix
../../2configs/lass/urxvt.nix
../../2configs/lass/bird.nix
- ../../2configs/lass/git-repos.nix
+ ../../2configs/lass/new-repos.nix
../../2configs/lass/chromium-patched.nix
../../2configs/lass/retiolum.nix
{
diff --git a/2configs/lass/new-repos.nix b/2configs/lass/new-repos.nix
new file mode 100644
index 00000000..2c73f950
--- /dev/null
+++ b/2configs/lass/new-repos.nix
@@ -0,0 +1,77 @@
+{ config, lib, pkgs, ... }:
+
+with import ../../4lib/tv { inherit lib pkgs; };
+let
+
+ out = {
+ krebs.git = {
+ enable = true;
+ root-title = "public repositories at ${config.krebs.build.host.name}";
+ root-desc = "keep calm and engage";
+ inherit repos rules;
+ };
+ };
+
+ repos = mapAttrs (_: s: removeAttrs s ["collaborators"]) (
+ public-repos //
+ optionalAttrs config.krebs.build.host.secure restricted-repos
+ );
+
+ rules = concatMap make-rules (attrValues repos);
+
+ public-repos = mapAttrs make-public-repo {
+ painload = {};
+ stockholm = {
+ desc = "take all the computers hostage, they'll love you!";
+ };
+ wai-middleware-time = {};
+ web-routes-wai-custom = {};
+ };
+
+ restricted-repos = mapAttrs make-restricted-repo (
+ {
+ brain = {
+ collaborators = with config.krebs.users; [ tv makefu ];
+ };
+ } //
+ import /root/src/secrets/repos.nix { inherit config lib pkgs; }
+ );
+
+ make-public-repo = name: { desc ? null, ... }: {
+ inherit name desc;
+ public = true;
+ hooks = {
+ post-receive = git.irc-announce {
+ # TODO make nick = config.krebs.build.host.name the default
+ nick = config.krebs.build.host.name;
+ channel = "#retiolum";
+ server = "cd.retiolum";
+ };
+ };
+ };
+
+ make-restricted-repo = name: { desc ? null, ... }: {
+ inherit name desc;
+ public = false;
+ };
+
+ make-rules =
+ with git // config.krebs.users;
+ repo:
+ singleton {
+ user = lass;
+ repo = [ repo ];
+ perm = push "refs/*" [ non-fast-forward create delete merge ];
+ } ++
+ optional repo.public {
+ user = [ tv makefu uriel ];
+ repo = [ repo ];
+ perm = fetch;
+ } ++
+ optional (length (repo.collaborators or []) > 0) {
+ user = repo.collaborators;
+ repo = [ repo ];
+ perm = fetch;
+ };
+
+in out