Fix matugen output paths — use absolute home directory

Tilde (~) wasn't being expanded by matugen, so template
output files were never created.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-13 20:00:24 +01:00
parent effa5e5cbb
commit 7c180a3761

View file

@ -39,11 +39,11 @@
[templates.ghostty]
input_path = "${inputs.self}/templates/ghostty-colors"
output_path = "~/.config/ghostty/themes/wallpaper"
output_path = "${config.home.homeDirectory}/.config/ghostty/themes/wallpaper"
[templates.gtk4]
input_path = "${inputs.self}/templates/gtk4-colors.css"
output_path = "~/.config/gtk-4.0/colors.css"
output_path = "${config.home.homeDirectory}/.config/gtk-4.0/colors.css"
'';
}