hosts/plover: format code

This commit is contained in:
Gabriel Arazas 2022-12-28 14:10:07 +08:00
parent fcd8bde8dc
commit 14f190904f

View File

@ -42,6 +42,7 @@ in
domain = "foodogsquared.one"; domain = "foodogsquared.one";
firewall.allowedTCPPorts = [ firewall.allowedTCPPorts = [
22 # Secure Shells. 22 # Secure Shells.
80 # HTTP servers. 80 # HTTP servers.
433 # HTTPS servers. 433 # HTTPS servers.
@ -116,6 +117,7 @@ in
services.nginx = { services.nginx = {
enable = true; enable = true;
enableReload = true; enableReload = true;
package = pkgs.nginxMainline; package = pkgs.nginxMainline;
recommendedGzipSettings = true; recommendedGzipSettings = true;
@ -356,7 +358,7 @@ in
# Allow Gitea to take a dump. # Allow Gitea to take a dump.
dump = { dump = {
enable = true; enable = true;
interval = "Sunday"; interval = "weekly";
}; };
# There are a lot of services in port 3000 so we'll change it. # There are a lot of services in port 3000 so we'll change it.
@ -478,8 +480,7 @@ in
# Enabling web vault with whatever nixpkgs comes in. # Enabling web vault with whatever nixpkgs comes in.
WEB_VAULT_ENABLED = true; WEB_VAULT_ENABLED = true;
# Configuring the database. Take note it is required to create a password # Databasifications...
# for the user.
DATABASE_URL = "postgresql://${vaultwardenUser}@/${vaultwardenDbName}"; DATABASE_URL = "postgresql://${vaultwardenUser}@/${vaultwardenDbName}";
# Mailer service configuration (except the user and password). # Mailer service configuration (except the user and password).