blob: 557222e9b05afa9f0e9049a5543e880e5f985c9b (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{ config, lib, ... }:
with lib;
let
cfg = config.modules.services.soju;
in
{
disabledModules = [
"services/networking/soju.nix"
];
imports = [
./_soju-module.nix
];
options.modules.services.soju = {
enable = mkEnableOption "soju bouncer";
hostName = mkOption { type = types.str; default = config.networking.hostName; };
port = mkOption { type = types.port; default = 6697; };
tls = {
enable = mkEnableOption "enable TLS encryption";
acmeHost = mkOption { type = types.str; };
};
};
config = mkIf cfg.enable {
services.soju = {
enable = true;
extraGroups = [ "acme" ];
hostName = cfg.hostName;
listen = [ ":${toString cfg.port}" ];
} // optionalAttrs cfg.tls.enable {
tlsCertificate = "${config.security.acme.certs.${cfg.tls.acmeHost}.directory}/cert.pem";
tlsCertificateKey = "${config.security.acme.certs.${cfg.tls.acmeHost}.directory}/key.pem";
};
systemd.services.soju = {
after = [ "acme-finished-${cfg.tls.acmeHost}.target" ];
};
networking.firewall.allowedTCPPorts = [ cfg.port ];
modules.persistence.directories = [
"/var/lib/private/soju"
];
};
}
|