From 7c180a3761359dec8e089471afffd6a4fec16407 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Mon, 13 Apr 2026 20:00:24 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20matugen=20output=20paths=20=E2=80=94=20us?= =?UTF-8?q?e=20absolute=20home=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tilde (~) wasn't being expanded by matugen, so template output files were never created. Co-Authored-By: Claude Opus 4.6 --- home-manager/fred.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/fred.nix b/home-manager/fred.nix index b42b109..cd0c357 100644 --- a/home-manager/fred.nix +++ b/home-manager/fred.nix @@ -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" ''; }