move flake configuration to .config/clan/flakes rather than $XDG_DATA_DIRS

This commit is contained in:
Jörg Thalheim
2023-11-10 12:50:11 +01:00
parent 46191b9a9c
commit df1acebd87
3 changed files with 3 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ def clan_config_dir() -> Path:
def clan_flakes_dir() -> Path:
path = clan_data_dir() / "flake"
path = clan_config_dir() / "flakes"
if not path.exists():
log.debug(f"Creating path with parents {path}")
path.mkdir(parents=True)