From ca6ac067707eb1d39de0e3b1b8d40e7dd24a5956 Mon Sep 17 00:00:00 2001 From: rycee Date: Tue, 5 Nov 2024 22:41:15 +0000 Subject: [PATCH] deploy: 2f607e07f3ac7e53541120536708e824acccfaa8 --- options.xhtml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/options.xhtml b/options.xhtml index 7676b9759..8eb37269b 100644 --- a/options.xhtml +++ b/options.xhtml @@ -8492,8 +8492,9 @@ variable. In particular code like

home.
   BAR = "$FOO World!";
 };
 

may not work as expected. If you need to reference another -session variable, then do so inside Nix instead. The above -example then becomes

home.sessionVariables = {
+session variable (even if it is declared by using other options
+like xdg.configHome), then do so inside Nix instead.
+The above example then becomes

home.sessionVariables = {
   FOO = "Hello";
   BAR = "${config.home.sessionVariables.FOO} World!";
 };