From 301fc39b85678de522323c23aff038252e1eafa5 Mon Sep 17 00:00:00 2001 From: Jonathan Brielmaier Date: Sun, 26 Jun 2022 11:31:42 +0200 Subject: 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. --- nongnu/system/install.scm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/nongnu/system/install.scm b/nongnu/system/install.scm index 275bcaa..24bc6ec 100644 --- a/nongnu/system/install.scm +++ b/nongnu/system/install.scm @@ -1,5 +1,6 @@ ;;; Copyright © 2019 Alex Griffin ;;; Copyright © 2019 Pierre Neidhardt +;;; Copyright © 2022 Jonathan Brielmaier ;;; ;;; 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 @@ -18,6 +19,10 @@ ;; $ guix system disk-image nongnu/system/install.scm (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 install) #:use-module (nongnu packages linux) @@ -27,6 +32,13 @@ (operating-system (inherit installation-os) (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 -- cgit v1.2.3