mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
62 lines
1.9 KiB
Nix
62 lines
1.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud26;
|
|
enableBrokenCiphersForSSE = false;
|
|
|
|
nginx.recommendedHttpHeaders = true;
|
|
https = true;
|
|
hostName = "files.nickiel.net";
|
|
home = "/Aurora/nextcloud";
|
|
|
|
autoUpdateApps.enable = true;
|
|
|
|
config = {
|
|
defaultPhoneRegion = "US";
|
|
overwriteProtocol = "https";
|
|
extraTrustedDomains = [
|
|
"10.0.0.183"
|
|
"files.nickiel.net"
|
|
];
|
|
trustedProxies = [
|
|
"files.nickiel.net"
|
|
];
|
|
|
|
dbtype = "pgsql";
|
|
dbuser = "nextcloud";
|
|
dbhost = "/run/postgresql";
|
|
dbname = "nextcloud";
|
|
dbpassFile = "/Aurora/nextcloud/nextcloud-db-password";
|
|
|
|
# This doesn't seem to be working, see this documation:
|
|
# https://docs.nextcloud.com/server/latest/admin_manual/configuration_user/reset_admin_password.html
|
|
adminpassFile = "/Aurora/nextcloud/nextcloud-admin-password";
|
|
adminuser = "admin";
|
|
};
|
|
};
|
|
|
|
services.postgresql = {
|
|
enable = true;
|
|
ensureDatabases = [ "nextcloud" ];
|
|
ensureUsers = [
|
|
{
|
|
name = "nextcloud";
|
|
ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
}
|
|
];
|
|
authentication = lib.mkForce ''
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
local all all trust
|
|
host all all 127.0.0.1/32 trust
|
|
host all all ::1/128 trust
|
|
'';
|
|
};
|
|
|
|
# Make sure PostSQL is running before nextcloud
|
|
systemd.services."nextcloud-setup" = {
|
|
requires = ["postgresql.service"];
|
|
after = ["postgresql.service"];
|
|
};
|
|
}
|