module.nix: don't run with debug logging by default (move to test vm)

This commit is contained in:
2025-11-09 20:28:19 +09:00
parent a57eefa5be
commit 05a4f9ad1d
2 changed files with 2 additions and 1 deletions

View File

@@ -122,6 +122,8 @@
enable = true;
createLocalDatabaseUser = true;
};
systemd.services."mysqladm@".environment.RUST_LOG = "debug";
})
];
};

View File

@@ -98,7 +98,6 @@ in
systemd.services."mysqladm@" = {
description = "MySQL administration tool for non-admin users";
environment.RUST_LOG = "debug";
restartTriggers = [ config.environment.etc."mysqladm/config.toml".source ];
serviceConfig = {
Type = "notify";