NixOS-Config/nixos/queen/nextcloud.nix

95 lines
2.2 KiB
Nix
Raw Normal View History

2023-11-19 23:20:16 +01:00
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
#this came from https://jacobneplokh.com/how-to-setup-nextcloud-on-nixos/
services.nginx = {
enable = true;
# Use recommended settings
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
# Only allow PFS-enabled ciphers with AES256
sslCiphers = "AES256+EECDH:AES256+EDH:!aNULL";
# Setup Nextcloud virtual host to listen on ports
virtualHosts = {
"nextcloud.gladtherescake.eu" = {
## Force HTTP redirect to HTTPS
forceSSL = true;
## LetsEncrypt
enableACME = true;
};
};
};
services.nextcloud = {
enable = true;
hostName = "nextcloud.gladtherescake.eu";
# Use HTTPS for links
https = true;
# Auto-update Nextcloud Apps
autoUpdateApps.enable = true;
# Set what time makes sense for you
autoUpdateApps.startAt = "05:00:00";
configureRedis = true;
2023-11-20 20:26:17 +01:00
package = pkgs.nextcloud27;
#Directory for the data is /var/lib/nextcloud
2023-11-21 14:55:19 +01:00
2023-11-19 23:20:16 +01:00
config = {
# Further forces Nextcloud to use HTTPS
overwriteProtocol = "https";
# Nextcloud PostegreSQL database configuration, recommended over using SQLite
2023-11-20 20:26:17 +01:00
dbtype = "mysql";
2023-11-19 23:20:16 +01:00
dbuser = "nextcloud";
2023-11-20 20:26:17 +01:00
dbhost = "/run/mysql";
dbname = "NC";
2023-11-20 16:30:00 +01:00
dbpassFile = config.sops.secrets."nextclouddb".path;
2023-11-19 23:20:16 +01:00
#TODO: work with sops to set this instead of a file & make sure the db setup is the same as on the previous server for easy migration
2023-11-20 16:19:52 +01:00
adminpassFile = config.sops.secrets."nextcloudadmin".path;
2023-11-19 23:20:16 +01:00
adminuser = "admin";
};
};
2023-11-20 20:26:17 +01:00
services.mysql = {
2023-11-19 23:20:16 +01:00
enable = true;
2023-11-20 20:26:17 +01:00
package = pkgs.mariadb_110;
2023-11-21 14:55:19 +01:00
#Directory for the database is /var/lib/mysql
2023-11-21 19:03:25 +01:00
settings = {
mysqld = {
innodb_force_recovery = true;
};
};
2023-11-21 14:55:19 +01:00
2023-11-19 23:20:16 +01:00
# Ensure the database, user, and permissions always exist
2023-11-20 20:26:17 +01:00
ensureDatabases = ["NC"];
2023-11-19 23:20:16 +01:00
ensureUsers = [
{
name = "nextcloud";
2023-11-20 20:26:17 +01:00
ensurePermissions."DATABASE NC" = "ALL PRIVILEGES";
2023-11-19 23:20:16 +01:00
}
];
};
systemd.services."nextcloud-setup" = {
2023-11-20 20:26:17 +01:00
requires = ["mysql.service"];
after = ["mysql.service"];
2023-11-19 23:20:16 +01:00
};
}