From 94e77114b3cddf6c9b1c2ee541836ac32c1ac8a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Thu, 11 Sep 2025 08:17:36 -0400 Subject: [PATCH] lib: fix option docs --- lib.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.nix b/lib.nix index c4dbfd9..7642d00 100644 --- a/lib.nix +++ b/lib.nix @@ -38,9 +38,9 @@ in { if hasPrefix "/" p then throw "This option cannot handle absolute paths yet!" else "${config.relativeTo}/${p}"; - defaultText = "name"; + defaultText = name; description = '' - Path to target file relative to {option}`hjem.users..files..relativeTo`. + Path to target file relative to ${rootDir}. ''; };