mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-26 02:56:36 +03:00

After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev b32a094368
result/bin/apply-formatting $NIXPKGS_PATH
78 lines
1.9 KiB
Nix
78 lines
1.9 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
name,
|
|
...
|
|
}:
|
|
{
|
|
options = {
|
|
dataPath = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/lib/pantalaimon-${name}";
|
|
description = ''
|
|
The directory where `pantalaimon` should store its state such as the database file.
|
|
'';
|
|
};
|
|
|
|
logLevel = lib.mkOption {
|
|
type = lib.types.enum [
|
|
"info"
|
|
"warning"
|
|
"error"
|
|
"debug"
|
|
];
|
|
default = "warning";
|
|
description = ''
|
|
Set the log level of the daemon.
|
|
'';
|
|
};
|
|
|
|
homeserver = lib.mkOption {
|
|
type = lib.types.str;
|
|
example = "https://matrix.org";
|
|
description = ''
|
|
The URI of the homeserver that the `pantalaimon` proxy should
|
|
forward requests to, without the matrix API path but including
|
|
the http(s) schema.
|
|
'';
|
|
};
|
|
|
|
ssl = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether or not SSL verification should be enabled for outgoing
|
|
connections to the homeserver.
|
|
'';
|
|
};
|
|
|
|
listenAddress = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "localhost";
|
|
description = ''
|
|
The address where the daemon will listen to client connections
|
|
for this homeserver.
|
|
'';
|
|
};
|
|
|
|
listenPort = lib.mkOption {
|
|
type = lib.types.port;
|
|
default = 8009;
|
|
description = ''
|
|
The port where the daemon will listen to client connections for
|
|
this homeserver. Note that the listen address/port combination
|
|
needs to be lib.unique between different homeservers.
|
|
'';
|
|
};
|
|
|
|
extraSettings = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
default = { };
|
|
description = ''
|
|
Extra configuration options. See
|
|
[pantalaimon(5)](https://github.com/matrix-org/pantalaimon/blob/master/docs/man/pantalaimon.5.md)
|
|
for available options.
|
|
'';
|
|
};
|
|
};
|
|
}
|