mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: vm: Add a few packages to the default profile.
* gnu/system/vm.scm (system-qemu-image): Add procps, psmisc, and Zile to the default profile. Increase the image size to 550 MiB.
This commit is contained in:
parent
87eb734d38
commit
5b16ff0985
1 changed files with 5 additions and 1 deletions
|
@ -30,6 +30,7 @@ (define-module (gnu system vm)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages qemu)
|
#:use-module (gnu packages qemu)
|
||||||
#:use-module (gnu packages parted)
|
#:use-module (gnu packages parted)
|
||||||
|
#:use-module (gnu packages zile)
|
||||||
#:use-module (gnu packages grub)
|
#:use-module (gnu packages grub)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages linux-initrd)
|
#:use-module (gnu packages linux-initrd)
|
||||||
|
@ -534,6 +535,9 @@ (define etc-rpc
|
||||||
("gcc" ,gcc-final)
|
("gcc" ,gcc-final)
|
||||||
("libc" ,glibc-final)
|
("libc" ,glibc-final)
|
||||||
("inetutils" ,inetutils)
|
("inetutils" ,inetutils)
|
||||||
|
("procps" ,procps)
|
||||||
|
("psmisc" ,psmisc)
|
||||||
|
("zile" ,zile)
|
||||||
("guix" ,guix-0.4)))
|
("guix" ,guix-0.4)))
|
||||||
|
|
||||||
;; TODO: Replace with a real profile with a manifest.
|
;; TODO: Replace with a real profile with a manifest.
|
||||||
|
@ -603,7 +607,7 @@ (define etc-rpc
|
||||||
(qemu-image store
|
(qemu-image store
|
||||||
#:grub-configuration grub.cfg
|
#:grub-configuration grub.cfg
|
||||||
#:populate populate
|
#:populate populate
|
||||||
#:disk-image-size (* 500 (expt 2 20))
|
#:disk-image-size (* 550 (expt 2 20))
|
||||||
#:initialize-store? #t
|
#:initialize-store? #t
|
||||||
#:inputs-to-copy `(("boot" ,boot)
|
#:inputs-to-copy `(("boot" ,boot)
|
||||||
("linux" ,linux-libre)
|
("linux" ,linux-libre)
|
||||||
|
|
Loading…
Reference in a new issue