aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cgit/integration.nix
blob: ffa5b3ec92ac5fa6be68f658908899ee027defb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ appConfig, lib, pkgs, ... }:
{
  # TODO references ../../public
  users.users.git.home = "/var/lib/git";
  users.users.git.createHome = true;
  users.users.git.shell = "${pkgs.git}/bin/git-shell";
  users.users.git.openssh.authorizedKeys.keyFiles = [
    ../../public/aforemny.id_rsa.pub
    ../../public/kirchner.id_rsa.pub
  ];

  bindMounts."/var/lib/git".isReadOnly = false;

  systemd.services."ensure-git-repositories".wantedBy = [ "multi-user.target" ];
  systemd.services."ensure-git-repositories".script = "${pkgs.writers.writeDashBin "ensure-git-repositories" ''
    set -efu
    ${lib.concatLines (lib.mapAttrsToList (name: _: ''
      test -e /var/lib/git/${lib.escapeShellArg name} || \
        ${pkgs.git}/bin/git init --bare /var/lib/git/${lib.escapeShellArg name}
    '') appConfig.repositories)}
  ''}/bin/ensure-git-repositories";
  systemd.services."ensure-git-repositories".serviceConfig.User = "git";
  systemd.services."ensure-git-repositories".serviceConfig.Group = "nogroup";
}