From 05a4f9ad1da8c2ab2c6f54978c480d40ad3b655c Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 9 Nov 2025 20:28:19 +0900 Subject: [PATCH] module.nix: don't run with debug logging by default (move to test vm) --- flake.nix | 2 ++ nix/module.nix | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 57228e6..f7962cf 100644 --- a/flake.nix +++ b/flake.nix @@ -122,6 +122,8 @@ enable = true; createLocalDatabaseUser = true; }; + + systemd.services."mysqladm@".environment.RUST_LOG = "debug"; }) ]; }; diff --git a/nix/module.nix b/nix/module.nix index 0e27fba..3bd6bda 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -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";