about summary refs log tree commit diff
path: root/ops/nixos/clbot.nix
blob: adcbebd57fd09831663eb0bf6295e2cd919fb490 (plain) (blame)
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
# Module that configures CLBot, our Gerrit->IRC info bridge.
{ config, lib, pkgs, ... }:

let
  inherit (builtins) concatStringsSep attrValues mapAttrs;
  inherit (lib)
    mkEnableOption
    mkIf
    mkOption
    types;

  description = "CLBot forwards Gerrit notifications to IRC";
  cfg = config.services.depot.clbot;

  mkFlags = flags:
    concatStringsSep " "
      (attrValues (mapAttrs (key: value: "-${key} \"${toString value}\"") flags));
in {
  options.services.depot.clbot = {
    enable = mkEnableOption description;
    flags = mkOption {
      type = types.attrsOf types.str;
      description = "Key value pairs for command line flags";
    };
  };

  config = mkIf cfg.enable {
    # This does not use DynamicUser because we need to make some files
    # (notably the SSH private key) readable by this user outside of
    # the module.
    users = {
      groups.clbot = {};

      users.clbot = {
        group = "clbot";
        isNormalUser = false;
      };
    };

    systemd.services.clbot = {
      inherit description;
      script = "${config.depot.fun.clbot}/bin/clbot ${mkFlags cfg.flags} -alsologtostderr";
      wantedBy = [ "multi-user.target" ];

      serviceConfig = {
        User = "clbot";
        EnvironmentFile = "/etc/secrets/clbot";
        Restart = "always";
      };
    };
  };
}