Update dingserver

This commit is contained in:
2022-04-07 02:20:40 +00:00
parent 5f658a3efa
commit a9c0cc8c1c
5 changed files with 30 additions and 59 deletions

View File

@@ -1,39 +0,0 @@
{pkgs, ... }:
{
services.mautrix-facebook = {
enable = true;
# file containing the appservice and telegram tokens
#environmentFile = /etc/secrets/mautrix-telegram.env;
# The appservice is pre-configured to use SQLite by default.
# It's also possible to use PostgreSQL.
settings = {
homeserver = {
address = "http://localhost:8008";
domain = "broccoli.town";
};
appservice = {
address = "https://localhost:29319";
bot_username = "messenger_bot";
database = "sqlite:///var/lib/mautrix/bot.db";
port = 29319;
as_token = "NwNtnSTUaIIxf8DIew1XMYyktrbckiMp8iwcXUGkHq28tYVc99A-IL2swBR7WFtl";
hs_token = "QAuD0k9I3QCfEfhlnWbqBFGOTJz-fFdesnzZOovJxdfGVMDCkdFEb6Zvu5eGAIZi";
};
bridge = {
encryption = {
allow = true;
default = true;
};
username_template = "facebook_{userid}";
permissions = {
"*" = "relay";
"broccoli.town" = "user";
"@dung:broccoli.town" = "admin";
};
};
};
};
}

View File

@@ -42,6 +42,7 @@
"danielpatterson.dev" = {
extraConfig = ''
root * /srv/site/danielpatterson.dev
encode zstd gzip
file_server
'';
};

View File

@@ -4,8 +4,9 @@
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./synapse.nix
./caddy.nix
./synapse.nix
./syncthing.nix
];
# Use the GRUB 2 boot loader.
@@ -26,12 +27,13 @@
users.users.daniel = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
extraGroups = [ "wheel" "syncthing" ]; # Enable sudo for the user.
};
environment.systemPackages = with pkgs; [
curl
git
helix
kitty
lazygit
wget

View File

@@ -6,23 +6,24 @@ in {
services.matrix-synapse = {
enable = true;
server_name = "broccoli.town";
database_type = "sqlite3";
max_upload_size = "50M";
listeners = [
{
port = 8008;
bind_address = "::1";
type = "http";
tls = false;
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = false;
}
];
}
];
settings = {
server_name = "broccoli.town";
database.name = "sqlite3";
max_upload_size = "50M";
listeners = [
{
port = 8008;
type = "http";
tls = false;
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = false;
}
];
}
];
};
};
}

View File

@@ -0,0 +1,6 @@
{ config, pkgs, lib, ... }:
{
services.syncthing = {
enable = true;
};
}