summary refs log tree commit diff
path: root/nixos/modules/services/networking/inspircd.nix
blob: 81c367ec8f7dd61650b515ee4057f3f3ac254192 (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
53
54
55
56
57
58
59
60
61
62
{ config, lib, pkgs, ... }:

let
  cfg = config.services.inspircd;

  configFile = pkgs.writeText "inspircd.conf" cfg.config;

in {
  meta = {
    maintainers = [ lib.maintainers.sternenseemann ];
  };

  options = {
    services.inspircd = {
      enable = lib.mkEnableOption "InspIRCd";

      package = lib.mkOption {
        type = lib.types.package;
        default = pkgs.inspircd;
        defaultText = lib.literalExpression "pkgs.inspircd";
        example = lib.literalExpression "pkgs.inspircdMinimal";
        description = ''
          The InspIRCd package to use. This is mainly useful
          to specify an overridden version of the
          <literal>pkgs.inspircd</literal> dervivation, for
          example if you want to use a more minimal InspIRCd
          distribution with less modules enabled or with
          modules enabled which can't be distributed in binary
          form due to licensing issues.
        '';
      };

      config = lib.mkOption {
        type = lib.types.lines;
        description = ''
          Verbatim <literal>inspircd.conf</literal> file.
          For a list of options, consult the
          <link xlink:href="https://docs.inspircd.org/3/configuration/">InspIRCd documentation</link>, the
          <link xlink:href="https://docs.inspircd.org/3/modules/">Module documentation</link>
          and the example configuration files distributed
          with <literal>pkgs.inspircd.doc</literal>
        '';
      };
    };
  };

  config = lib.mkIf cfg.enable {
    systemd.services.inspircd = {
      description = "InspIRCd - the stable, high-performance and modular Internet Relay Chat Daemon";
      wantedBy = [ "multi-user.target" ];
      requires = [ "network.target" ];

      serviceConfig = {
        Type = "simple";
        ExecStart = ''
          ${lib.getBin cfg.package}/bin/inspircd start --config ${configFile} --nofork --nopid
        '';
        DynamicUser = true;
      };
    };
  };
}