feat: log level in nix

This commit is contained in:
2025-10-17 17:44:49 +02:00
parent 5137379ac9
commit c256931b1d
3 changed files with 10 additions and 3 deletions

View File

@@ -56,4 +56,5 @@ STYLIX = app_config.get("stylix", {"enable": False})
CALENDAR = app_config.get("calendar", {"enable": True, "khal_path": "khal"})
NOTMUCH = app_config.get("notmuch", {"enable": True, "notmuch_path": "notmuch", "emacsclient_command": "emacsclient"})
BAR_HEIGHT = app_config.get("height", 40)
LOG_LEVEL = app_config.get("logLevel", "WARNING")
DEV = app_config.get("dev", False)