From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: Guix/GNU/Linux multi distro + GuixSD multi-site scenario Date: Sat, 26 Mar 2016 16:31:11 -0700 Message-ID: <8760w83jgg.fsf@dustycloud.org> References: <86r3eyzfge.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ajxfv-0001kO-Ls for help-guix@gnu.org; Sat, 26 Mar 2016 19:31:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ajxfu-0005Bt-Sb for help-guix@gnu.org; Sat, 26 Mar 2016 19:31:23 -0400 Received: from dustycloud.org ([2600:3c02::f03c:91ff:feae:cb51]:56264) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ajxfu-0005Bp-Ow for help-guix@gnu.org; Sat, 26 Mar 2016 19:31:22 -0400 In-reply-to: <86r3eyzfge.fsf@gmail.com> 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-bounces+gcggh-help-guix=m.gmane.org@gnu.org To: myglc2 Cc: help-guix@gnu.org myglc2 writes: > These are questions about a Guix user scenario I am contemplating. > > Situation: > > - I have installed Guix/Debian and GuixSD on a couple home servers > (behind a typical broadband router). > > - I am running Guix from a git checkout to which I have applied personal > patches. > > - TODO I talk my friendly sysadmins at a couple organizations into > installing Guix on /GNU/Linux distros, say ubuntu and centos. > > It seems obvious that Guix supports this scenario. But it is not so > obvious what the best way to 'instantiate' it is ;) > > So I have a few questions: > > 1) What is a practical way to get the same identical versions of my > customized guix packages running on all the machines? Running all machines, I dunno. I do dual-boot Debian and GuixSD with them sharing the same user profile and store. On Debian, I bind-mount some directories from GuixSD's root partition. From /etc/fstab: UUID=d9cc11f0-e548-4526-a541-4f631a10b73c /mnt/guix/ ext4 defaults 0 2 /mnt/guix/var/guix /var/guix none defaults,bind 0 0 /mnt/guix/gnu /gnu none defaults,bind 0 0 Then /home/ is shared (and luks encrypted) on both distros. It works fine. If you want to do "same profile and store across all things" Ricardo Wurmus does some wild things using NFS.