diff --git a/doc/guix.texi b/doc/guix.texi
index 785329add88de28b143f965ec563bb17e07f854f..3ec1cf852ab282fed11c833b6dd66b5bb6bf086b 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -10461,7 +10461,7 @@ The package object of the operating system kernel to use@footnote{Currently
 only the Linux-libre kernel is supported.  In the future, it will be
 possible to use the GNU@tie{}Hurd.}.
 
-@item @code{kernel-arguments} (default: @code{'()})
+@item @code{kernel-arguments} (default: @code{'("quiet")})
 List of strings or gexps representing additional arguments to pass on
 the command-line of the kernel---e.g., @code{("console=ttyS0")}.
 
diff --git a/gnu/system.scm b/gnu/system.scm
index 24243eb7078e2896355d12a0ed76c1fa59af83e1..c4f5740df26e6b49b9d7b17c2540b7e43fff4fa6 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -160,7 +160,7 @@ (define-record-type* <operating-system> operating-system
   (kernel operating-system-kernel                 ; package
           (default linux-libre))
   (kernel-arguments operating-system-user-kernel-arguments
-                    (default '()))                ; list of gexps/strings
+                    (default '("quiet")))         ; list of gexps/strings
   (bootloader operating-system-bootloader)        ; <bootloader-configuration>
   (label operating-system-label                   ; string
          (thunked)