From ca954c2f6f18164e58b2564a718aeae05e8b5544 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 12 Jan 2026 03:14:58 +0900 Subject: [PATCH] Look for config in `/etc` instead of `/var/lib` --- src/worblehat/services/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worblehat/services/config.py b/src/worblehat/services/config.py index ea81af3..268816a 100644 --- a/src/worblehat/services/config.py +++ b/src/worblehat/services/config.py @@ -20,7 +20,7 @@ class Config: _expected_config_file_locations = [ Path("./config.toml"), Path("~/.config/worblehat/config.toml"), - Path("/var/lib/worblehat/config.toml"), + Path("/etc/worblehat/config.toml"), ] def __class_getitem__(cls, name: str) -> Any: