dotfiles/home-manager/modules/pantalaimon.nix

26 lines
556 B
Nix
Raw Normal View History

{
inputs',
pkgs,
...
}: {
services.pantalaimon = {
enable = true;
# TODO switch to unstable when PR263669 is merged
package = inputs'.nixpkgs-stable.legacyPackages.${pkgs.stdenv.system}.pantalaimon;
settings = {
Default = {
LogLevel = "Info";
SSL = true;
};
local-matrix = {
Homeserver = "https://matrix.redalder.org";
ListenAddress = "127.0.0.1";
ListenPort = 8008;
UseKeyring = false;
IgnoreVerification = true;
SSL = false;
};
};
};
}