mors: add git.nix

This commit is contained in:
lassulus 2015-06-19 00:45:56 +02:00
parent a54eca6f0f
commit 98775ff29e
2 changed files with 72 additions and 0 deletions

View File

@ -26,6 +26,7 @@
../../secrets/mors-pw.nix
./repos.nix
../lass/chromium-patched.nix
./git.nix
];
nixpkgs = {

71
modules/mors/git.nix Normal file
View File

@ -0,0 +1,71 @@
{ config, lib, pkgs, ... }:
{
imports = [
../tv/git
];
services.git =
let
inherit (builtins) readFile;
# TODO lib should already include our stuff
inherit (import ../../lib { inherit lib pkgs; }) addNames git;
krebs-private = name: desc:
{
inherit desc;
hooks = {
post-receive = git.irc-announce {
nick = config.networking.hostName; # TODO make this the default
channel = "#retiolum";
server = "ire.retiolum";
};
};
}
in rec {
enable = true;
users = addNames {
tv = { pubkey = readFile <pubkeys/tv.ssh.pub>; };
lass = { pubkey = readFile <pubkeys/lass.ssh.pub>; };
uriel = { pubkey = readFile <pubkeys/lass.ssh.pub>; };
makefu = { pubkey = "xxx"; };
};
repos = addNames {
shitment = {
desc = "shitment repository";
hooks = {
post-receive = git.irc-announce {
nick = config.networking.hostName; # TODO make this the default
channel = "#retiolum";
server = "ire.retiolum";
};
};
public = true;
};
testing = {
desc = "testing repository";
hooks = {
post-receive = git.irc-announce {
nick = config.networking.hostName; # TODO make this the default
channel = "#repository";
server = "ire.retiolum";
};
};
public = true;
};
};
rules = with git; with users; with repos; [
{ user = lass;
repo = [ testing shitment ];
perm = push master [ non-fast-forward create delete merge ];
}
{ user = [ tv uriel makefu ];
repo = [ testing shitment ];
perm = fetch;
}
];
};
}