2021-06-07 23:38:42 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.pantalaimon;
|
|
|
|
|
|
|
|
iniFmt = pkgs.formats.ini { };
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.jojosch ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.pantalaimon = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption
|
|
|
|
"Pantalaimon, an E2EE aware proxy daemon for matrix clients";
|
2021-06-07 23:38:42 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.pantalaimon;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.pantalaimon";
|
2023-07-02 01:45:18 +02:00
|
|
|
description =
|
2023-07-01 01:30:13 +02:00
|
|
|
"Package providing the {command}`pantalaimon` executable to use.";
|
2021-06-07 23:38:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = iniFmt.type;
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "{ }";
|
|
|
|
example = literalExpression ''
|
2021-06-07 23:38:42 +02:00
|
|
|
{
|
|
|
|
Default = {
|
|
|
|
LogLevel = "Debug";
|
|
|
|
SSL = true;
|
|
|
|
};
|
|
|
|
local-matrix = {
|
|
|
|
Homeserver = "https://matrix.org";
|
|
|
|
ListenAddress = "127.0.0.1";
|
|
|
|
ListenPort = 8008;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-06-07 23:38:42 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/pantalaimon/pantalaimon.conf`.
|
|
|
|
|
|
|
|
See <https://github.com/matrix-org/pantalaimon/blob/master/docs/manpantalaimon.5.md> or
|
|
|
|
{manpage}`pantalaimon(5)`
|
2021-06-07 23:38:42 +02:00
|
|
|
for options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.pantalaimon" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2021-06-07 23:38:42 +02:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
systemd.user.services = {
|
|
|
|
pantalaimon = {
|
|
|
|
Unit = {
|
|
|
|
Description =
|
|
|
|
"Pantalaimon - E2EE aware proxy daemon for matrix clients";
|
|
|
|
After = [ "network-online.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
ExecStart = "${cfg.package}/bin/pantalaimon -c ${
|
|
|
|
iniFmt.generate "pantalaimon.conf" cfg.settings
|
|
|
|
}";
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
|
|
|
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|