From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#35541: Installer does not add %base-packages Date: Sat, 04 May 2019 16:54:23 +0200 Message-ID: <87imuq2rts.fsf@gnu.org> References: <20190503085655.fx3oide7huydf337@pelzflorian.localdomain> <87imuretpb.fsf@gnu.org> <87ftpvhm11.fsf@elephly.net> <87muk3da0e.fsf@gnu.org> <87tvea4cld.fsf@gnu.org> <20190504133219.kwwbhx36irce7ohk@pelzflorian.localdomain> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:57982) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMw49-0000Xf-M8 for bug-guix@gnu.org; Sat, 04 May 2019 10:55:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMw47-0004Di-J3 for bug-guix@gnu.org; Sat, 04 May 2019 10:55:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38425) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hMw46-0004D4-Fx for bug-guix@gnu.org; Sat, 04 May 2019 10:55:03 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20190504133219.kwwbhx36irce7ohk@pelzflorian.localdomain> (pelzflorian@pelzflorian.de's message of "Sat, 4 May 2019 15:32:19 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: "pelzflorian (Florian Pelz)" Cc: 35541@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable "pelzflorian (Florian Pelz)" skribis: > On Sat, May 04, 2019 at 02:40:30PM +0200, Ludovic Court=C3=A8s wrote: >> Please tell me what you think! >>=20 > > It is a good text. However, I find it more tragic that Xfce and MATE > do not work than that these commands are missing until installed, but > it depends on the audience I guess. Yeah, but note that the Xfce failure is due to this bug (confirmed by running =E2=80=98guix system vm desktop.tmpl=E2=80=99 with the attached pat= ch.) Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/system/examples/desktop.tmpl b/gnu/system/examples/desktop.tmpl index 3931bad60d..ff6e4e37dd 100644 --- a/gnu/system/examples/desktop.tmpl +++ b/gnu/system/examples/desktop.tmpl @@ -45,18 +45,14 @@ (users (cons (user-account (name "bob") (comment "Alice's brother") + (password (crypt "foo" "$6$abc")) (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video"))) %base-user-accounts)) ;; This is where we specify system-wide packages. - (packages (append (list - ;; for HTTPS access - nss-certs - ;; for user mounts - gvfs) - %base-packages)) + (packages '()) ;; Add GNOME and Xfce---we can choose at the log-in screen ;; by clicking the gear. Use the "desktop" services, which --=-=-=--