nongnu: Add packages to the installation image.

This increases the size of the ISO by 100MiB.

* nongnu/system/install.scm (operating-system)[packages]: Add curl, git,
neovim and zile.
This commit is contained in:
Jonathan Brielmaier 2022-06-26 11:31:42 +02:00
parent 36855ba0f2
commit 301fc39b85
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -1,5 +1,6 @@
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2022 Jonathan Brielmaier <jonathan.brielmaier@web.de>
;;; ;;;
;;; This program is free software: you can redistribute it and/or modify ;;; This program is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by ;;; it under the terms of the GNU General Public License as published by
@ -18,6 +19,10 @@
;; $ guix system disk-image nongnu/system/install.scm ;; $ guix system disk-image nongnu/system/install.scm
(define-module (nongnu system install) (define-module (nongnu system install)
#:use-module (gnu packages curl)
#:use-module (gnu packages version-control)
#:use-module (gnu packages vim)
#:use-module (gnu packages zile)
#:use-module (gnu system) #:use-module (gnu system)
#:use-module (gnu system install) #:use-module (gnu system install)
#:use-module (nongnu packages linux) #:use-module (nongnu packages linux)
@ -27,6 +32,13 @@
(operating-system (operating-system
(inherit installation-os) (inherit installation-os)
(kernel linux) (kernel linux)
(firmware (list linux-firmware)))) (firmware (list linux-firmware))
(packages
(append
(list curl
git
neovim
zile)
(operating-system-packages installation-os)))))
installation-os-nonfree installation-os-nonfree