From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: in a vm Date: Fri, 7 Apr 2017 21:36:52 -0500 Message-ID: <20170407213652.2290e980@openmailbox.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49161) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cwgFX-0003en-Na for help-guix@gnu.org; Fri, 07 Apr 2017 22:37:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cwgFT-00011m-RO for help-guix@gnu.org; Fri, 07 Apr 2017 22:37:15 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:54806 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cwgFT-00011J-If for help-guix@gnu.org; Fri, 07 Apr 2017 22:37:11 -0400 In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Catonano Cc: help-guix On Fri, 7 Apr 2017 11:17:19 +0200 Catonano wrote: > Hello, > > trying to use a vm with > > ./pre-inst-env guix system vm gnu/system/examples/bare-bones.tmpl > > From a branch in which I'm working on some packages > > When I launch the vm, the packages are not there > > guix package --list-available | grep my-package > > returns nothing Within the VM, the guix that is being used is Guix's "guix" package (gnu/packages/package-management.scm), which will not have any knowledge of your packages or any other modifications in your git branch. One thing you could do is add your packages to the vm config's "package" field so that they are installed system-wide in the VM. Another, untested, idea might be to map your git checkout into your vm user's ~/.config/guix/latest `~Eric