[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: zsh and fish missed in /etc/shells?
From: |
Ludovic Courtès |
Subject: |
Re: zsh and fish missed in /etc/shells? |
Date: |
Mon, 09 Mar 2015 09:59:37 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
Axel <address@hidden> skribis:
> Could we append /etc/shells with `zsh` or `fish` paths after these
> shells installed in the system?
Sure! Would you like to submit a patch? This is in gnu/system.scm.
> And I think these shells should be linked to
> /run/current-system/profile/bin/ as `bash` does.
To do that, all you need to do is to add them to the ‘packages’ field of
the ‘operating-system’ declaration:
(operating-system
;; ...
(packages (cons* fish zsh %base-packages)))
Thanks,
Ludo’.