summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-06-01 15:43:21 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-06-01 15:44:59 +0900
commita809ff20a07045b40944435aaa3cd42c07ccfeee (patch)
treebb34e2db01be5c079416af4d6b900d5bd3ff0aea /doc
parent090eb8c8d46ee6b78f8e103ecadeb582ab8c0743 (diff)
doc: Mention default for `aliases' field of home-bash-configuration.
* doc/guix.texi (Shells Home Services): Mention default for `aliases' field of home-bash-configuration, and how to extend. Change-Id: I939a6d24f5bbfc7071d8ecb0777222fc3d26b59b
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi12
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 1e3c6ffb229..f5efd34024e 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -53164,11 +53164,13 @@ in @file{.bashrc} for use by interactive shells. A typical example of
53164such variables is @code{HISTSIZE} and related history variables 53164such variables is @code{HISTSIZE} and related history variables
53165(@pxref{Bash Variables,,, bash,Bash Reference Manual}). 53165(@pxref{Bash Variables,,, bash,Bash Reference Manual}).
53166 53166
53167@item @code{aliases} (type: alist) 53167@item @code{aliases} (default: %default-bash-aliases) (type: alist)
53168Association list of aliases to set for the Bash session. The aliases 53168Association list of aliases to set for the Bash session. If you want to
53169will be defined after the contents of the @code{bashrc} field has been 53169preserve the default ones, you should append your alist to
53170put in the @file{.bashrc} file. The alias will automatically be quoted, 53170@code{%default-bash-aliases}, a variable from the @code{(gnu system
53171so something like this: 53171shadow)} module. The aliases will be defined after the contents of the
53172@code{bashrc} field has been put in the @file{.bashrc} file. The alias
53173will automatically be quoted, so something like this:
53172 53174
53173@lisp 53175@lisp
53174'(("ls" . "ls -alF")) 53176'(("ls" . "ls -alF"))