Move snowflake to all systems, modify ly's sorting behavior

This commit is contained in:
Jimbo 2024-12-27 07:53:05 -05:00
parent 8d16c69725
commit da6df2f98e
12 changed files with 22 additions and 36 deletions

View file

@ -0,0 +1,19 @@
{ lib, config, ... }:
{
services.nginx.virtualHosts."cloud.${config.domains.jim1}" = lib.mkIf config.services.nextcloud.enable {
enableACME = true;
addSSL = true;
onlySSL = true;
locations."/" = {
proxyWebsockets = true;
extraConfig = ''
location /.well-known/carddav {
return 301 $scheme://$host/remote.php/dav;
}
location /.well-known/caldav {
return 301 $scheme://$host/remote.php/dav;
}
'';
};
};
}