Some small tweaks to mariadb

This commit is contained in:
Lillian-Violet 2023-11-22 18:27:35 +01:00
parent 97aa91958f
commit 6ac981a064
2 changed files with 10 additions and 0 deletions

View file

@ -124,6 +124,8 @@
programs.home-manager.enable = true;
programs.git = {
enable = true;
userEmail = "git@gladtherescake.eu";
userName = "Lillian-Violet";
};
# Nicely reload system units when changing configs

View file

@ -57,6 +57,7 @@
dbuser = "nextcloud";
dbhost = "/run/mysql";
dbname = "NC";
dbport = 3306;
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
@ -66,6 +67,13 @@
};
services.mysql = {
settings = {
mysqld = {
log-error = "/var/log/mysql_err.log";
port = 3306;
};
};
enable = true;
package = pkgs.mariadb_110;