diff options
author | Jean-Baptiste Note <jean-baptiste.note@m4x.org> | 2020-05-04 20:01:10 +0000 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-05-05 20:09:39 +0200 |
commit | 751d1f01e4f0607d41e4c859d944753b18466652 (patch) | |
tree | 65287f0d80c26f10f6271a29e54431b7db34e4db /doc/guix-cookbook.texi | |
parent | ec4fea69df8969ec61fcb554255a0a7f02421c74 (diff) | |
download | guix-751d1f01e4f0607d41e4c859d944753b18466652.tar guix-751d1f01e4f0607d41e4c859d944753b18466652.tar.gz |
doc: cookbook: Fix sbcl-ttf-fonts package name.
* doc/guix-cookbook.texi (StumpWM): Adjust sbcl-ttf-fonts package name.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
Diffstat (limited to 'doc/guix-cookbook.texi')
-rw-r--r-- | doc/guix-cookbook.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi index f58d18d47c..2a605276e6 100644 --- a/doc/guix-cookbook.texi +++ b/doc/guix-cookbook.texi @@ -1594,7 +1594,7 @@ An example configuration can look like this: @cindex stumpwm fonts By default StumpWM uses X11 fonts, which could be small or pixelated on your system. You could fix this by installing StumpWM contrib Lisp -module @code{sbcl-stumpwm-ttf-fonts}, adding it to Guix system packages: +module @code{sbcl-ttf-fonts}, adding it to Guix system packages: @lisp (use-modules (gnu)) @@ -1603,7 +1603,7 @@ module @code{sbcl-stumpwm-ttf-fonts}, adding it to Guix system packages: (operating-system ;; … (packages (append (list sbcl stumpwm `(,stumpwm "lib")) - sbcl-stumpwm-ttf-fonts font-dejavu %base-packages))) + sbcl-ttf-fonts font-dejavu %base-packages))) @end lisp Then you need to add the following code to a StumpWM configuration file |