Some edits and sops

This commit is contained in:
Lillian Violet 2023-11-20 20:26:17 +01:00
parent 26bb9286f0
commit 28c3e3e30f
4 changed files with 16 additions and 12 deletions

View file

@ -83,7 +83,7 @@
noto-fonts-emoji-blob-bin
noto-fonts-emoji
oh-my-zsh
postgresql_16
mariadb_110
rsync
wget
zsh

View file

@ -44,15 +44,17 @@
configureRedis = true;
package = pkgs.nextcloud27;
config = {
# Further forces Nextcloud to use HTTPS
overwriteProtocol = "https";
# Nextcloud PostegreSQL database configuration, recommended over using SQLite
dbtype = "pgsql";
dbtype = "mysql";
dbuser = "nextcloud";
dbhost = "/run/postgresql"; # nextcloud will add /.s.PGSQL.5432 by itself
dbname = "nextcloud";
dbhost = "/run/mysql";
dbname = "NC";
dbpassFile = config.sops.secrets."nextclouddb".path;
#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
@ -61,21 +63,22 @@
};
};
services.postgresql = {
services.mysql = {
enable = true;
package = pkgs.mariadb_110;
# Ensure the database, user, and permissions always exist
ensureDatabases = ["nextcloud"];
ensureDatabases = ["NC"];
ensureUsers = [
{
name = "nextcloud";
ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
ensurePermissions."DATABASE NC" = "ALL PRIVILEGES";
}
];
};
systemd.services."nextcloud-setup" = {
requires = ["postgresql.service"];
after = ["postgresql.service"];
requires = ["mysql.service"];
after = ["mysql.service"];
};
}