2018-11-04 21:18:06 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2019-09-01 15:55:46 +01:00
|
|
|
|
|
|
|
isMa1sd =
|
|
|
|
package:
|
|
|
|
lib.hasPrefix "ma1sd" package.name;
|
|
|
|
|
|
|
|
isMxisd =
|
|
|
|
package:
|
|
|
|
lib.hasPrefix "mxisd" package.name;
|
|
|
|
|
2018-11-04 21:18:06 +00:00
|
|
|
cfg = config.services.mxisd;
|
|
|
|
|
|
|
|
server = optionalAttrs (cfg.server.name != null) { inherit (cfg.server) name; }
|
|
|
|
// optionalAttrs (cfg.server.port != null) { inherit (cfg.server) port; };
|
|
|
|
|
|
|
|
baseConfig = {
|
|
|
|
matrix.domain = cfg.matrix.domain;
|
|
|
|
key.path = "${cfg.dataDir}/signing.key";
|
|
|
|
storage = {
|
2019-09-01 15:55:46 +01:00
|
|
|
provider.sqlite.database = if isMa1sd cfg.package
|
|
|
|
then "${cfg.dataDir}/ma1sd.db"
|
|
|
|
else "${cfg.dataDir}/mxisd.db";
|
2018-11-04 21:18:06 +00:00
|
|
|
};
|
|
|
|
} // optionalAttrs (server != {}) { inherit server; };
|
|
|
|
|
|
|
|
# merges baseConfig and extraConfig into a single file
|
|
|
|
fullConfig = recursiveUpdate baseConfig cfg.extraConfig;
|
|
|
|
|
2019-09-01 15:55:46 +01:00
|
|
|
configFile = if isMa1sd cfg.package
|
|
|
|
then pkgs.writeText "ma1sd-config.yaml" (builtins.toJSON fullConfig)
|
|
|
|
else pkgs.writeText "mxisd-config.yaml" (builtins.toJSON fullConfig);
|
2018-11-04 21:18:06 +00:00
|
|
|
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.mxisd = {
|
2019-09-01 15:55:46 +01:00
|
|
|
enable = mkEnableOption "matrix federated identity server";
|
2018-11-04 21:18:06 +00:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.mxisd;
|
|
|
|
defaultText = "pkgs.mxisd";
|
2019-09-01 15:55:46 +01:00
|
|
|
description = "The mxisd/ma1sd package to use";
|
2018-11-04 21:18:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "/var/lib/mxisd";
|
2019-09-01 15:55:46 +01:00
|
|
|
description = "Where data mxisd/ma1sd uses resides";
|
2018-11-04 21:18:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
2019-09-01 15:55:46 +01:00
|
|
|
description = "Extra options merged into the mxisd/ma1sd configuration";
|
2018-11-04 21:18:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
matrix = {
|
|
|
|
|
|
|
|
domain = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
the domain of the matrix homeserver
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
server = {
|
|
|
|
|
|
|
|
name = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
2019-09-01 15:55:46 +01:00
|
|
|
Public hostname of mxisd/ma1sd, if different from the Matrix domain.
|
2018-11-04 21:18:06 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
type = types.nullOr types.int;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
HTTP port to listen on (unencrypted)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-09-14 18:51:29 +01:00
|
|
|
users.users.mxisd =
|
2018-11-04 21:18:06 +00:00
|
|
|
{
|
|
|
|
group = "mxisd";
|
|
|
|
home = cfg.dataDir;
|
|
|
|
createHome = true;
|
|
|
|
shell = "${pkgs.bash}/bin/bash";
|
|
|
|
uid = config.ids.uids.mxisd;
|
2019-09-14 18:51:29 +01:00
|
|
|
};
|
2018-11-04 21:18:06 +00:00
|
|
|
|
2019-09-14 18:51:29 +01:00
|
|
|
users.groups.mxisd =
|
2018-11-04 21:18:06 +00:00
|
|
|
{
|
|
|
|
gid = config.ids.gids.mxisd;
|
2019-09-14 18:51:29 +01:00
|
|
|
};
|
2018-11-04 21:18:06 +00:00
|
|
|
|
|
|
|
systemd.services.mxisd = {
|
|
|
|
description = "a federated identity server for the matrix ecosystem";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
2019-09-01 15:55:46 +01:00
|
|
|
serviceConfig = let
|
|
|
|
executable = if isMa1sd cfg.package then "ma1sd" else "mxisd";
|
|
|
|
in {
|
2018-11-04 21:18:06 +00:00
|
|
|
Type = "simple";
|
|
|
|
User = "mxisd";
|
|
|
|
Group = "mxisd";
|
2019-09-01 15:55:46 +01:00
|
|
|
ExecStart = "${cfg.package}/bin/${executable} -c ${configFile}";
|
2018-11-04 21:18:06 +00:00
|
|
|
WorkingDirectory = cfg.dataDir;
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|