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

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

  system.stateVersion = "22.11"; # DO NOT EDIT!
}