commit e9d70dd5a4217010b2e79d67cfe5c53970495129
parent 6a52af58a0e82e1cb1e16b868059655f92942ad0
Author: MTRNord <mtrnord1@gmail.com>
Date: Mon, 11 Dec 2023 12:29:44 +0100
Try to fix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix
@@ -410,7 +410,7 @@ in {
(map (i: {
name = "unix:/run/mastodon-streaming/streaming-${toString i}.socket";
value = {};
- }) (lib.range 1 services.mastodon.streamingProcesses));
+ }) (lib.range 1 config.services.mastodon.streamingProcesses));
};
virtualHosts = {
"search.midnightthoughts.space" = {
@@ -425,7 +425,7 @@ in {
};
};
"mastodon.nordgedanken.dev" = {
- root = "${services.mastodon.package}/public/";
+ root = "${config.services.mastodon.package}/public/";
forceSSL = true;
enableACME = true;
locations."/system/".alias = "/var/lib/mastodon/public-system/";