Upgrade nixpkgs to 24.05

This commit is contained in:
Amanda Graven 2024-08-03 20:40:14 +02:00
parent aa404c2de6
commit b1ff58b3d9
Signed by: amanda
GPG key ID: F747582C5608F4CB
4 changed files with 27 additions and 17 deletions

View file

@ -5,11 +5,6 @@
enable = true;
withJemalloc = true;
extraConfigFiles = [ config.secrets.files.synapse_extra_config.file ];
sliding-sync = {
enable = true;
settings.SYNCV3_SERVER = "https://graven.dev";
environmentFile = builtins.toString config.secrets.files.synapse_sliding_sync_env.file;
};
settings = {
server_name = "graven.dev";
enable_registration = false;
@ -71,5 +66,10 @@
];
};
};
services.matrix-sliding-sync = {
enable = true;
settings.SYNCV3_SERVER = "https://graven.dev";
environmentFile = builtins.toString config.secrets.files.synapse_sliding_sync_env.file;
};
}