diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-09 23:51:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-10 00:35:27 +0200 |
commit | 378377eb43ababb877d27324f181ecf613c74459 (patch) | |
tree | d7bfdb1ba2b63837d00f06fa0405445e7bc38c29 | |
parent | 8fd3de0bbb5abac76d8dcb792a3be61179b2bf2c (diff) | |
download | guix-378377eb43ababb877d27324f181ecf613c74459.tar guix-378377eb43ababb877d27324f181ecf613c74459.tar.gz |
services: xorg: Fix typo in font path.
* gnu/services/xorg.scm (xorg-start-command)[xserver.conf]: Fix typo in
font path.
-rw-r--r-- | gnu/services/xorg.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 5eae4a87d8..070960b495 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -48,7 +48,7 @@ XORG-SERVER. Usually the X server is started by a login manager." (define (xserver.conf) (text-file* "xserver.conf" " Section \"Files\" - FontPath \"" font-adobe75dpi "/share/font/X11/75dpi\" + FontPath \"" font-adobe75dpi "/share/fonts/X11/75dpi\" ModulePath \"" xf86-video-vesa "/lib/xorg/modules/drivers\" ModulePath \"" xf86-input-mouse "/lib/xorg/modules/input\" ModulePath \"" xf86-input-keyboard "/lib/xorg/modules/input\" |