summaryrefslogtreecommitdiffstats
path: root/modules/uriel
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2015-06-14 19:22:37 +0200
committertv <tv@krebsco.de>2015-06-14 19:22:37 +0200
commite9970fc3bdaf204ce0999058017a471e1efcfaa9 (patch)
tree6a36b91b0ed33ba90b4da32d1fa995789f923a8d /modules/uriel
parent55e6974bdf76ca7a7e0df6a8e99c70ab01dda74e (diff)
parent3eb5e2ace450035c0cdff424e68eed6906e997e1 (diff)
Merge remote-tracking branch 'mors/master' into mors-staging
Diffstat (limited to 'modules/uriel')
-rw-r--r--modules/uriel/default.nix6
-rw-r--r--modules/uriel/repos.nix78
2 files changed, 82 insertions, 2 deletions
diff --git a/modules/uriel/default.nix b/modules/uriel/default.nix
index bfdc022..a54dfa7 100644
--- a/modules/uriel/default.nix
+++ b/modules/uriel/default.nix
@@ -16,13 +16,14 @@
../../secrets/uriel-pw.nix
../lass/sshkeys.nix
../lass/bird.nix
+ ./repos.nix
];
+
nixpkgs = {
url = "https://github.com/Lassulus/nixpkgs";
- rev = "b42ecfb8c61e514bf7733b4ab0982d3e7e27dacb";
+ rev = "b74c8eeb73a75eb61148c190df4733474a99a205";
};
-
networking.hostName = "uriel";
networking.wireless.enable = true;
nix.maxJobs = 2;
@@ -104,6 +105,7 @@
environment.systemPackages = with pkgs; [
];
+
#users.extraGroups = {
# loot = {
# members = [
diff --git a/modules/uriel/repos.nix b/modules/uriel/repos.nix
new file mode 100644
index 0000000..e31ba94
--- /dev/null
+++ b/modules/uriel/repos.nix
@@ -0,0 +1,78 @@
+{ ... }:
+
+{
+ imports = [
+ ../lass/gitolite-base.nix
+ ../common/krebs-keys.nix
+ ../common/krebs-repos.nix
+ ];
+
+ services.gitolite = {
+ repos = {
+
+ config = {
+ users = {
+ lass = "RW+";
+ uriel = "R";
+ tv = "R";
+ };
+ extraConfig = "option hook.post-receive = irc-announce";
+ };
+
+ pass = {
+ users = {
+ lass = "RW+";
+ uriel = "R";
+ };
+ };
+
+ load-env = {
+ users = {
+ lass = "RW+";
+ uriel = "R";
+ tv = "R";
+ };
+ extraConfig = "option hook.post-receive = irc-announce";
+ };
+
+ emse-hsdb = {
+ users = {
+ lass = "RW+";
+ uriel = "R";
+ tv = "R";
+ };
+ extraConfig = "option hook.post-receive = irc-announce";
+ };
+
+ brain = {
+ users = {
+ lass = "RW+";
+ };
+ extraConfig = "option hook.post-receive = irc-announce";
+ #hooks.post-receive = irc-announce;
+ };
+
+ painload = {
+ users = {
+ lass = "RW+";
+ };
+ extraConfig = "option hook.post-receive = irc-announce";
+ };
+
+ services = {
+ users = {
+ lass = "RW+";
+ };
+ extraConfig = "option hook.post-receive = irc-announce";
+ };
+
+ xmonad-config = {
+ users = {
+ lass = "RW+";
+ uriel = "R";
+ };
+ };
+
+ };
+ };
+}