From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54240) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dazlk-0003k9-Pu for guix-patches@gnu.org; Fri, 28 Jul 2017 03:33:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dazlf-0007A3-T2 for guix-patches@gnu.org; Fri, 28 Jul 2017 03:33:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56454) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dazlf-00079A-No for guix-patches@gnu.org; Fri, 28 Jul 2017 03:33:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dazle-0003V5-2X for guix-patches@gnu.org; Fri, 28 Jul 2017 03:33:02 -0400 Subject: [bug#27691] Qemu test tome4 works for me Resent-Message-ID: From: Oleg Pykhalov References: <20170714124108.24997-1-go.wigust@gmail.com> <87poczcaxz.fsf@magnolia.i-did-not-set--mail-host-address--so-tickle-me> <87h8y7xy7n.fsf@gnu.org> <87bmo8eaen.fsf@gmail.com> <87wp6va8vr.fsf@gnu.org> <87379jih9a.fsf@gmail.com> <87lgnb7xdq.fsf@gnu.org> Date: Fri, 28 Jul 2017 10:31:34 +0300 In-Reply-To: <87lgnb7xdq.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 26 Jul 2017 22:32:01 +0200") Message-ID: <87lgn9586h.fsf_-_@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 27691@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Ludovic, I made a qemu machine to test tome4. It works for me. Could you check for you? I build it with: ./pre-inst-env guix system vm $HOME/dotfiles/guix/system-tome4.scm Also I increased RAM to 2048 in generated script manually. Can I do this automatically when I build a vm? --=-=-= Content-Type: text/plain; charset=utf-8 Content-Disposition: inline; filename=system-tome4.scm Content-Transfer-Encoding: quoted-printable Content-Description: qemu test tome4 ;; GuixSD configuration file for the game machine. ;; Copyright =C2=A9 2017 Oleg Pykhalov ;; Released under the GNU GPLv3 or any later version. (use-modules (gnu)) (use-service-modules desktop xorg) (use-package-modules certs games fonts bash xfce) (define %custom-desktop-services (modify-services %desktop-services (special-files-service-type config =3D> `(("/bin/sh" ,(file-append bash "/bin/sh")) ("/usr/bin/env" ,(file-append coreutils "/bin/env")))) (slim-service-type config =3D> (slim-configuration (inherit config) (auto-login? #t) (auto-login-session (file-append xfce "/bin/st= artxfce4")) (default-user "alice"))))) (operating-system (host-name "tome4") (timezone "Europe/Moscow") (locale "en_US.utf8") (bootloader (grub-configuration (device "/dev/sda"))) =20=20 (file-systems (cons (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video")) (home-directory "/home/alice")) %base-user-accounts)) (packages (cons* nss-certs font-liberation font-dejavu tome4 %base-packages)) =20=20 (services (cons* (xfce-desktop-service) %custom-desktop-services)) (name-service-switch %mdns-host-lookup-nss)) --=-=-=--