l green.r: add brain repo

This commit is contained in:
lassulus 2021-10-25 19:52:54 +02:00
parent 12046d1501
commit 3a7c333943
2 changed files with 66 additions and 0 deletions

View File

@ -17,6 +17,8 @@ with import <stockholm/lib>;
<stockholm/lass/2configs/IM.nix> <stockholm/lass/2configs/IM.nix>
<stockholm/lass/2configs/muchsync.nix> <stockholm/lass/2configs/muchsync.nix>
<stockholm/lass/2configs/pass.nix> <stockholm/lass/2configs/pass.nix>
<stockholm/lass/2configs/git-brain.nix>
]; ];
krebs.build.host = config.krebs.hosts.green; krebs.build.host = config.krebs.hosts.green;
@ -68,6 +70,13 @@ with import <stockholm/lib>;
]; ];
clearTarget = true; clearTarget = true;
}; };
"/var/lib/git" = {
source = "/var/state/git";
options = [
"-M ${toString config.users.users.git.uid}"
];
clearTarget = true;
};
}; };
systemd.services."bindfs-_home_lass_Maildir".serviceConfig.ExecStartPost = pkgs.writeDash "symlink-notmuch" '' systemd.services."bindfs-_home_lass_Maildir".serviceConfig.ExecStartPost = pkgs.writeDash "symlink-notmuch" ''

View File

@ -0,0 +1,57 @@
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
let
repos = krebs-repos;
rules = concatMap krebs-rules (attrValues krebs-repos);
krebs-repos = mapAttrs make-krebs-repo {
brain = { };
krebs-secrets = { };
};
make-krebs-repo = with git; name: { cgit ? {}, ... }: {
inherit cgit name;
public = false;
hooks = {
post-receive = pkgs.git-hooks.irc-announce {
nick = config.networking.hostName;
verbose = true;
channel = "#xxx";
# TODO remove the hardcoded hostname
server = "irc.r";
};
};
};
# TODO: get the list of all krebsministers
krebsminister = with config.krebs.users; [ makefu tv ];
krebs-rules = repo:
set-owners repo [ config.krebs.users.lass ] ++ set-ro-access repo krebsminister;
set-ro-access = with git; repo: user:
singleton {
inherit user;
repo = [ repo ];
perm = fetch;
};
set-owners = with git;repo: user:
singleton {
inherit user;
repo = [ repo ];
perm = push "refs/*" [ non-fast-forward create delete merge ];
};
in {
krebs.git = {
enable = true;
cgit = {
enable = false;
};
inherit repos rules;
};
}