all repos — elgit @ 4f7cc84e78a5f6440231a3ad5f9f3c906e5032b8

fork of legit: web frontend for git, written in go

nix/nixos-module.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{ config
, lib
, pkgs
, ...
}:

let
  inherit (lib)
    literalExpression
    mkEnableOption
    mkIf
    mkOption
    mkPackageOption
    optionalAttrs
    optional
    types
    ;

  cfg = config.services.elgit;

  yaml = pkgs.formats.yaml { };
  configFile = yaml.generate "elgit.yaml" cfg.settings;

  defaultStateDir = "/var/lib/elgit";
  defaultStaticDir = "${defaultStateDir}/static";
in
{
  options.services.elgit = {
    enable = mkEnableOption "elgit git web frontend";

    package = mkPackageOption pkgs "elgit" { };

    user = mkOption {
      type = types.str;
      default = "elgit";
      description = "User account under which elgit runs.";
    };

    group = mkOption {
      type = types.str;
      default = "elgit";
      description = "Group account under which elgit runs.";
    };

    settings = mkOption {
      default = { };
      description = ''
        The primary elgit configuration. See the
        [sample configuration](https://github.com/icyphox/elgit/blob/master/config.yaml)
        for possible values.
      '';
      type = types.submodule {
        freeformType = yaml.type;
        options.repo = {
          root = mkOption {
            type = types.path;
            default = defaultStateDir;
            description = "Directory where elgit will scan for repositories.";
          };
          readme = mkOption {
            type = types.listOf types.str;
            default = [ ];
            description = "Readme files to look for.";
          };
          mainBranch = mkOption {
            type = types.listOf types.str;
            default = [
              "main"
              "master"
            ];
            description = "Main branch to look for.";
          };
          unlisted = mkOption {
            type = types.listOf types.str;
            default = [ ];
            description = "Repositories to hide from index.";
          };
        };
        options.dirs = {
          static = mkOption {
            type = types.path;
            default = "${pkgs.elgit}/lib/elgit/static";
            defaultText = literalExpression ''"''${pkgs.elgit}/lib/elgit/static"'';
            description = "Directories where static files are located.";
          };
        };
        options.meta = {
          title = mkOption {
            type = types.str;
            default = "elgit";
            description = "Website title.";
          };
          description = mkOption {
            type = types.str;
            default = "git frontend";
            description = "Website description.";
          };
          syntaxHighlight = mkOption {
            type = types.nullOr types.str;
            default = null;
            example = "monokailight";
            description = "Syntax highlighting theme.";
          };
        };
        options.server = {
          name = mkOption {
            type = types.str;
            default = "localhost";
            description = "Server name.";
          };
          host = mkOption {
            type = types.str;
            default = "127.0.0.1";
            description = "Host address.";
          };
          port = mkOption {
            type = types.port;
            default = 5555;
            description = "elgit port.";
          };
        };
      };
    };
  };

  config = mkIf cfg.enable {
    users.groups = optionalAttrs (cfg.group == "elgit") {
      "${cfg.group}" = { };
    };

    users.users = optionalAttrs (cfg.user == "elgit") {
      "${cfg.user}" = {
        group = cfg.group;
        isSystemUser = true;
      };
    };

    systemd.services.elgit = {
      description = "elgit git frontend";

      path = with pkgs; [ git ];

      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      restartTriggers = [ configFile ];

      serviceConfig = {
        Type = "simple";
        User = cfg.user;
        Group = cfg.group;
        ExecStart = "${cfg.package}/bin/elgit -config ${configFile}";
        Restart = "always";

        WorkingDirectory = cfg.settings.repo.root;
        StateDirectory =
          [ ]
          ++ optional (cfg.settings.repo.root == defaultStateDir) "elgit"
          ++ optional (cfg.settings.dirs.static == defaultStaticDir) "elgit/static";

        # Hardening
        CapabilityBoundingSet = [ "" ];
        DeviceAllow = [ "" ];
        LockPersonality = true;
        MemoryDenyWriteExecute = true;
        NoNewPrivileges = true;
        PrivateDevices = true;
        PrivateTmp = true;
        PrivateUsers = true;
        ProcSubset = "pid";
        ProtectClock = true;
        ProtectControlGroups = true;
        ProtectHome = true;
        ProtectHostname = true;
        ProtectKernelLogs = true;
        ProtectKernelModules = true;
        ProtectKernelTunables = true;
        ProtectProc = "invisible";
        ProtectSystem = "strict";
        ReadWritePaths = cfg.settings.repo.root;
        RemoveIPC = true;
        RestrictAddressFamilies = [
          "AF_INET"
          "AF_INET6"
        ];
        RestrictNamespaces = true;
        RestrictRealtime = true;
        RestrictSUIDSGID = true;
        SystemCallArchitectures = "native";
        SystemCallFilter = [
          "@system-service"
          "~@privileged"
        ];
        UMask = "0077";
      };
    };
  };
}