mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-12-23 15:24:52 +01:00
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:
parent
36855ba0f2
commit
301fc39b85
1 changed files with 13 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
||||
;;; 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
|
||||
;;; 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
|
||||
|
|
Loading…
Reference in a new issue