mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
services: etc: Add '/etc/ttys' symlink for the Hurd.
Reported by Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com> via IRC. * gnu/system.scm (operating-system-etc-service): For the Hurd, add '/etc/ttys' symlink. This fixes terminal behavior in the console by setting TERM=hurd.
This commit is contained in:
parent
9392652e91
commit
5681ce5074
1 changed files with 2 additions and 1 deletions
|
@ -847,7 +847,8 @@ (define* (operating-system-etc-service os)
|
|||
,@(if sudoers `(("sudoers" ,sudoers)) '())
|
||||
,@(if hurd
|
||||
`(("login" ,(file-append hurd "/etc/login"))
|
||||
("motd" ,(file-append hurd "/etc/motd")))
|
||||
("motd" ,(file-append hurd "/etc/motd"))
|
||||
("ttys" ,(file-append hurd "/etc/ttys")))
|
||||
'())))))
|
||||
|
||||
(define %root-account
|
||||
|
|
Loading…
Reference in a new issue