diff options
author | lassulus <lass@aidsballs.de> | 2015-07-16 15:51:01 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-07-16 15:51:01 +0200 |
commit | c3e295b56eba690fc5422b74a74ffca6d9f98ac5 (patch) | |
tree | 364dbf9606d2805fcd03e8814910db7e06f12450 /2configs/lass/mors/repos.nix | |
parent | 670cfaf39aaacb87d49d3fdffa53df34ee0f4d95 (diff) |
2 lass: re-add all configs
Diffstat (limited to '2configs/lass/mors/repos.nix')
-rw-r--r-- | 2configs/lass/mors/repos.nix | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/2configs/lass/mors/repos.nix b/2configs/lass/mors/repos.nix new file mode 100644 index 000000000..1f7f33456 --- /dev/null +++ b/2configs/lass/mors/repos.nix @@ -0,0 +1,87 @@ +{ ... }: + +{ + 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-drywall = { + 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"; + }; + }; + + }; + }; +} |