Use pantalaimon
This commit is contained in:
parent
d5a1912ced
commit
25ce495599
3 changed files with 18 additions and 2 deletions
|
@ -1,13 +1,27 @@
|
||||||
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
services.pantalaimon = {
|
services.pantalaimon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.pantalaimon.overrideAttrs {
|
||||||
|
pytestCheckPhase = "echo skip pytest";
|
||||||
|
};
|
||||||
settings = {
|
settings = {
|
||||||
|
Default = {
|
||||||
|
LogLevel = "Debug";
|
||||||
|
SSL = true;
|
||||||
|
};
|
||||||
local-matrix = {
|
local-matrix = {
|
||||||
Homeserver = "https://nixos.dev";
|
Homeserver = "https://matrix.aciceri.dev";
|
||||||
ListenAddress = "127.0.0.1";
|
# Homeserver = "https://matrix.nixos.dev/_matrix/client";
|
||||||
|
# Homeserver = "https://matrix.nixos.dev";
|
||||||
|
ListenAddress = "localhost";
|
||||||
ListenPort = 8008;
|
ListenPort = 8008;
|
||||||
|
# SSL = false;
|
||||||
|
UseKeyring = false;
|
||||||
|
# IgnoreVerification = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.services.pantalaimon.Unit.Requires = [ "dbus.socket" ];
|
systemd.user.services.pantalaimon.Unit.Requires = [ "dbus.socket" ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,6 +117,7 @@
|
||||||
group = "forgejo";
|
group = "forgejo";
|
||||||
};
|
};
|
||||||
"firefly-app-key".owner = "firefly-iii";
|
"firefly-app-key".owner = "firefly-iii";
|
||||||
|
"matrix-registration-shared-secret".owner = "matrix-synapse";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -95,6 +95,7 @@
|
||||||
"discord"
|
"discord"
|
||||||
"ib-tws"
|
"ib-tws"
|
||||||
"zoom"
|
"zoom"
|
||||||
|
"pantalaimon"
|
||||||
];
|
];
|
||||||
extraGroups = [ "plugdev" ];
|
extraGroups = [ "plugdev" ];
|
||||||
backupPaths = [ ];
|
backupPaths = [ ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue