GNU bug report logs - #76714
[DOCUMENTATION ] doc: Fix typo in Guix Home Services

Previous Next

Package: guix-patches;

Reported by: Sébastien Farge <sebastien-farge <at> laposte.net>

Date: Mon, 3 Mar 2025 15:34:03 UTC

Severity: normal

Done: Ludovic Courtès <ludo <at> gnu.org>

To reply to this bug, email your comments to 76714 AT debbugs.gnu.org.
There is no need to reopen the bug first.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#76714; Package guix-patches. (Mon, 03 Mar 2025 15:34:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sébastien Farge <sebastien-farge <at> laposte.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 03 Mar 2025 15:34:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sébastien Farge <sebastien-farge <at> laposte.net>
To: guix-patches <at> gnu.org
Cc: Sébastien Farge <sebastien-farge <at> laposte.net>
Subject: [DOCUMENTATION ] doc: Fix typo in Guix Home Services
Date: Mon,  3 Mar 2025 16:15:14 +0100
Hello,

In Guix Home Services info pages, i noticed this little typo, but with powerfull confusion for the reader.
And i would be happy to contribute to enlight this delightfull Guix System !

Have a nice day,

======= cover-letter

Sébastien Farge (1):
  doc: Fix typo in Guix Home Services

 doc/guix.texi | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

======== patch

   	doc: Fix typo in Guix Home Services

        * doc/guix.texi (Guix Home Services), change XDG_CONFIG_DIR to XDG_CONFIG_HOME in :
          - home-files-service-type
          - home-xdg-configuration-files-service-type
          - home-symlink-manager-service-type
          - home-parcimonie-configuration

Change-Id: I8fdb70903acf949c360c1e2b950ae7dd3578aded
---
 doc/guix.texi | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 0ca109a214..324d788ab6 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -47389,7 +47389,7 @@ the required command using the appropriate service type.
 The service of this type allows to specify a list of files, which will
 go to @file{~/.guix-home/files}, usually this directory contains
 configuration files (to be more precise it contains symlinks to files in
-@file{/gnu/store}), which should be placed in @file{$XDG_CONFIG_DIR} or
+@file{/gnu/store}), which should be placed in @file{$XDG_CONFIG_HOME} or
 in rare cases in @file{$HOME}.  It accepts extension values in the
 following format:
 
@@ -47568,14 +47568,14 @@ while visiting each one of the @code{directories}.
 The service is very similar to @code{home-files-service-type} (and
 actually extends it), but used for defining files, which will go to
 @file{~/.guix-home/files/.config}, which will be symlinked to
-@file{$XDG_CONFIG_DIR} by @code{home-symlink-manager-service-type} (for
+@file{$XDG_CONFIG_HOME} by @code{home-symlink-manager-service-type} (for
 example) during activation.  It accepts extension values in the
 following format:
 
 @lisp
 `(("sway/config" ,sway-file-like-object)
   ;; -> ~/.guix-home/files/.config/sway/config
-  ;; -> $XDG_CONFIG_DIR/sway/config (by symlink-manager)
+  ;; -> $XDG_CONFIG_HOME/sway/config (by symlink-manager)
   ("tmux/tmux.conf" ,(local-file "./tmux.conf")))
 @end lisp
 @end defvar
@@ -47606,9 +47606,9 @@ Creates new symlinks the following way: It looks @file{files/} directory
 (usually defined with @code{home-files-service-type},
 @code{home-xdg-configuration-files-service-type} and maybe some others),
 takes the files from @file{files/.config/} subdirectory and put
-respective links in @env{XDG_CONFIG_DIR}.  For example symlink for
+respective links in @env{XDG_CONFIG_HOME}.  For example symlink for
 @file{files/.config/sway/config} will end up in
-@file{$XDG_CONFIG_DIR/sway/config}.  The rest files in @file{files/}
+@file{$XDG_CONFIG_HOME/sway/config}.  The rest files in @file{files/}
 outside of @file{files/.config/} subdirectory will be treated slightly
 different: symlink will just go to @file{$HOME}.
 @file{files/.some-program/config} will end up in
@@ -48429,7 +48429,7 @@ Whether GnuPG is already configured to pass all traffic through
 @uref{https://torproject.org, Tor}.
 
 @item @code{refresh-guix-keyrings?} (default: @code{#f}) (type: boolean)
-Guix creates a few keyrings in the @var{$XDG_CONFIG_DIR}, such as when running
+Guix creates a few keyrings in the @var{$XDG_CONFIG_HOME}, such as when running
 @code{guix import} (@pxref{Invoking guix import}).  Setting this to @code{#t}
 will also refresh any keyrings which Guix has created.
 
-- 
2.48.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sun, 09 Mar 2025 21:00:02 GMT) Full text and rfc822 format available.

Notification sent to Sébastien Farge <sebastien-farge <at> laposte.net>:
bug acknowledged by developer. (Sun, 09 Mar 2025 21:00:02 GMT) Full text and rfc822 format available.

Message #10 received at 76714-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Sébastien Farge <sebastien-farge <at> laposte.net>
Cc: 76714-done <at> debbugs.gnu.org
Subject: Re: bug#76714: [DOCUMENTATION ] doc: Fix typo in Guix Home Services
Date: Sun, 09 Mar 2025 21:59:08 +0100
Sébastien Farge <sebastien-farge <at> laposte.net> skribis:

> In Guix Home Services info pages, i noticed this little typo, but with powerfull confusion for the reader.
> And i would be happy to contribute to enlight this delightfull Guix System !

Applied, thanks!




This bug report was last modified 26 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.