Compare commits
No commits in common. "90d767d7ce23010a5ee28ca684f9ad8cf1c04149" and "3b2b6699dae54c2f9f381da02d720149ea77b3aa" have entirely different histories.
90d767d7ce
...
3b2b6699da
|
@ -72,7 +72,7 @@
|
|||
|
||||
# Run Nix garbage collector, while avoiding recompilation
|
||||
nix = {
|
||||
settings.auto-optimise-store = true;
|
||||
autoOptimiseStore = true;
|
||||
gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 14d";
|
||||
|
|
|
@ -4,21 +4,18 @@
|
|||
# Matrix server configuration
|
||||
services.matrix-synapse = {
|
||||
enable = true;
|
||||
settings = {
|
||||
server_name = "coolneng.duckdns.org";
|
||||
public_baseurl = "https://matrix.coolneng.duckdns.org";
|
||||
listeners = [{
|
||||
port = 8008;
|
||||
tls = false;
|
||||
resources = [{
|
||||
compress = true;
|
||||
names = [ "client" ];
|
||||
}];
|
||||
bind_addresses = [ "127.0.0.1" ];
|
||||
server_name = "coolneng.duckdns.org";
|
||||
public_baseurl = "https://matrix.coolneng.duckdns.org";
|
||||
listeners = [{
|
||||
port = 8008;
|
||||
tls = false;
|
||||
resources = [{
|
||||
compress = true;
|
||||
names = [ "client" ];
|
||||
}];
|
||||
app_service_config_files =
|
||||
[ "/var/lib/matrix-synapse/telegram-registration.yaml" ];
|
||||
};
|
||||
}];
|
||||
app_service_config_files =
|
||||
[ "/var/lib/matrix-synapse/telegram-registration.yaml" ];
|
||||
};
|
||||
|
||||
# Telegram bridge for Matrix
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
config = {
|
||||
BASE_URL = "https://rss.coolneng.duckdns.org";
|
||||
RUN_MIGRATIONS = "1";
|
||||
DISABLE_HSTS = "1";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@ in {
|
|||
chown -R dnsmasq ${stateDir}
|
||||
systemctl restart dnsmasq
|
||||
'';
|
||||
after = [ "wireguard-wg0.service" ];
|
||||
startAt = "02:00:00";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue