installer: fix settime
box: libreddit -> redlib
This commit is contained in:
parent
113a4c23fb
commit
5e85572f51
@ -840,7 +840,7 @@ in
|
||||
cronIntervals = { daily = "50 21 * * *"; };
|
||||
};
|
||||
|
||||
libreddit = {
|
||||
redlib = {
|
||||
enable = true;
|
||||
port = 8482;
|
||||
};
|
||||
@ -930,7 +930,7 @@ in
|
||||
sslCertificate = "${config.sops.secrets.reddit_cert.path}";
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:${toString config.services.libreddit.port}";
|
||||
proxyPass = "http://localhost:${toString config.services.redlib.port}";
|
||||
proxyWebsockets = true;
|
||||
extraConfig = ''
|
||||
${httpAllow}
|
||||
|
@ -116,7 +116,10 @@ in
|
||||
if pkgs.system == "aarch64-linux"
|
||||
then {
|
||||
description = "Set date on boot";
|
||||
wantedBy = [ "network-online.target" ];
|
||||
wants =
|
||||
[ "network-online.target" "multi-user.target" ];
|
||||
before = [ "matrix-synapse.service" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network-online.target" ];
|
||||
script = ''
|
||||
. /etc/profile;
|
||||
|
Loading…
Reference in New Issue
Block a user