IMHO, it would also help new users - those who like the idea of Guix but haven’t yet wrapped their heads around the paradigm shift - get it by following tutorials on the new workflows.
I still feel like, I’m missing a couple of “AHA“ moments
here the part in my config.scm responsible to automatically getting into info on tty2:
(modify-services %desktop-services
;; modify TTY2 to get info for quick references if I hose the GUI
(mingetty-service-type
config =>
(mingetty-configuration
(inherit config)
(auto-login
(match (mingetty-configuration-tty config)
("tty2" "info")
(_ #f)))))
(delete gdm-service-type))))