summary refs log tree commit diff
path: root/host/Rory-nginx/services/containers/pluralcontactbotpoc/services/pantalaimon.nix
blob: 335176fcc813a54223d324cf9efb75e447934091 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ ... }:

{
  services.pantalaimon-headless = {
    instances."localhost" = {
      homeserver = "http://localhost:6167";
      ssl = false;
      extraSettings = {
        "DropOldKeys" = true;
        "UseKeyring" = false;
      };
    };
  };

}