From 08f162350c5d0062dfc1dd0b628448099bbc8317 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 28 Jul 2025 09:58:05 -0500 Subject: [PATCH] news: add news entry for zsh path refactor Give a news entry about change for path handling work done in https://github.com/nix-community/home-manager/pull/6089. Signed-off-by: Austin Horstman --- .../misc/news/2025/07/2025-07-28_09-45-00.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/misc/news/2025/07/2025-07-28_09-45-00.nix diff --git a/modules/misc/news/2025/07/2025-07-28_09-45-00.nix b/modules/misc/news/2025/07/2025-07-28_09-45-00.nix new file mode 100644 index 00000000..14aeb1da --- /dev/null +++ b/modules/misc/news/2025/07/2025-07-28_09-45-00.nix @@ -0,0 +1,17 @@ +{ config, ... }: +{ + time = "2025-07-28T09:45:00+00:00"; + condition = config.programs.zsh.enable; + message = '' + The zsh module has been refactored to improve path handling. + + Previously, path resolution was inconsistent and relied on hardcoded + `$HOME` references. The module has been restructured to use dedicated + path handling functions that properly handle both absolute and relative + paths while maintaining consistent behavior. + + As part of this refactoring, the use of relative paths has + been deprecated. Users are encouraged to use absolute paths for more + predictable path resolution. + ''; +}