diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-22 23:54:34 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-22 23:54:34 +0200 |
commit | cdbd81ce144f17644ceebd3d08723aa244696a05 (patch) | |
tree | f2d4c484a5a8880fb32b81ac4330842c88a53e2a /gnu/system/examples | |
parent | 10664c0f1c351eae24629127d97fe23f5e18a93c (diff) | |
parent | ec130e1a1b7f3b87b1a6e626754f7e7a07f6b717 (diff) | |
download | guix-cdbd81ce144f17644ceebd3d08723aa244696a05.tar.gz guix-cdbd81ce144f17644ceebd3d08723aa244696a05.zip |
Merge branch 'master' into emacs-team
Diffstat (limited to 'gnu/system/examples')
-rw-r--r-- | gnu/system/examples/vm-image.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/system/examples/vm-image.tmpl b/gnu/system/examples/vm-image.tmpl index 343287eaf6..b68183a023 100644 --- a/gnu/system/examples/vm-image.tmpl +++ b/gnu/system/examples/vm-image.tmpl @@ -7,8 +7,8 @@ (use-modules (gnu) (guix) (srfi srfi-1)) (use-service-modules desktop mcron networking spice ssh xorg sddm) -(use-package-modules bootloaders certs fonts nvi - package-management wget xorg) +(use-package-modules bootloaders certs fonts + package-management xorg) (define vm-image-motd (plain-file "motd" " \x1b[1;37mThis is the GNU system. Welcome!\x1b[0m @@ -77,7 +77,7 @@ accounts.\x1b[0m root ALL=(ALL) ALL %wheel ALL=NOPASSWD: ALL\n")) - (packages (append (list font-bitstream-vera nss-certs nvi wget) + (packages (append (list font-bitstream-vera nss-certs) %base-packages)) (services |