summary refs log tree commit diff
path: root/nixos/modules/services/misc
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-06-25 22:32:45 -0500
committerAustin Seipp <aseipp@pobox.com>2014-06-25 22:54:18 -0500
commit3eb2d1e03e7547807558c42c1b416118703f751e (patch)
treefb034389d72a49001821cfc1a058ea8580eab032 /nixos/modules/services/misc
parentec4cd43ca8da720185b887187468c5c237b93424 (diff)
downloadnixlib-3eb2d1e03e7547807558c42c1b416118703f751e.tar
nixlib-3eb2d1e03e7547807558c42c1b416118703f751e.tar.gz
nixlib-3eb2d1e03e7547807558c42c1b416118703f751e.tar.bz2
nixlib-3eb2d1e03e7547807558c42c1b416118703f751e.tar.lz
nixlib-3eb2d1e03e7547807558c42c1b416118703f751e.tar.xz
nixlib-3eb2d1e03e7547807558c42c1b416118703f751e.tar.zst
nixlib-3eb2d1e03e7547807558c42c1b416118703f751e.zip
nixos: add gitolite module
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'nixos/modules/services/misc')
-rw-r--r--nixos/modules/services/misc/gitolite.nix66
1 files changed, 66 insertions, 0 deletions
diff --git a/nixos/modules/services/misc/gitolite.nix b/nixos/modules/services/misc/gitolite.nix
new file mode 100644
index 000000000000..7e7629c05610
--- /dev/null
+++ b/nixos/modules/services/misc/gitolite.nix
@@ -0,0 +1,66 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  cfg = config.services.gitolite;
+  pubkeyFile = pkgs.writeText "gitolite-admin.pub" cfg.adminPubkey;
+in
+{
+  options = {
+    services.gitolite = {
+      enable = mkOption {
+        type = types.bool;
+        default = false;
+        description = ''
+          Enable gitolite management under the
+          <literal>gitolite</literal> user. The Gitolite home
+          directory is <literal>/var/lib/gitolite</literal>. After
+          switching to a configuration with Gitolite enabled, you can
+          then run <literal>git clone
+          git@host:gitolite-admin.git</literal> to manage it further.
+        '';
+      };
+
+      adminPubkey = mkOption {
+        type = types.str;
+        description = ''
+          Initial administrative public key for Gitolite. This should
+          be an SSH Public Key. Note that this key will only be used
+          once, upon the first initialization of the Gitolite user.
+        '';
+      };
+    };
+  };
+
+  config = mkIf cfg.enable {
+    users.extraUsers.gitolite = {
+      description     = "Gitolite user";
+      home            = "/var/lib/gitolite";
+      createHome      = true;
+      uid             = config.ids.uids.gitolite;
+      useDefaultShell = true;
+    };
+
+    systemd.services."gitolite-init" = {
+      description = "Gitolite initialization";
+      wantedBy    = [ "multi-user.target" ];
+
+      serviceConfig.User = "gitolite";
+      serviceConfig.Type = "oneshot";
+      serviceConfig.RemainAfterExit = true;
+
+      path = [ pkgs.gitolite pkgs.git pkgs.perl pkgs.bash pkgs.openssh ];
+      script = ''
+        cd /var/lib/gitolite
+        mkdir -p .gitolite/logs
+        if [ ! -d repositories ]; then
+          gitolite setup -pk ${pubkeyFile}
+        fi
+        gitolite setup # Upgrade if needed
+      '';
+    };
+
+    environment.systemPackages = [ pkgs.gitolite pkgs.git ];
+  };
+}