mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
system: Add 'which' to the base packages.
* gnu/system.scm (%base-packages): Add WHICH.
This commit is contained in:
parent
4a3b3b073a
commit
89a0d00a38
1 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@ (define-module (gnu system)
|
|||
#:use-module (guix derivations)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages which)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages package-management)
|
||||
|
@ -214,7 +215,7 @@ (define (operating-system-services os)
|
|||
(define %base-packages
|
||||
;; Default set of packages globally visible. It should include anything
|
||||
;; required for basic administrator tasks.
|
||||
(cons* procps psmisc less zile
|
||||
(cons* procps psmisc which less zile
|
||||
guile-final (@ (gnu packages admin) dmd) guix
|
||||
util-linux inetutils isc-dhcp
|
||||
net-tools ; XXX: remove when Inetutils suffices
|
||||
|
|
Loading…
Reference in a new issue