Re: Guix home and operating-system

2022-07-28 Thread david larsson
I use this to browse a bug by number: --8<---cut here---start->8--- #!/usr/bin/bash # browse-bug num="$(echo "$1"|tr -cs '0123456789' ' '|tr -d ' ')" my_browser="${MY_BUG_BROWSER:-lynx}" if [ -n "$num" ];then $my_browser "https://debbugs.gnu.org/cgi/bugrep

Re: Guix home and operating-system

2022-07-27 Thread bokr
Hi Andrew, On +2022-07-27 11:34:14 +0300, Andrew Tropin wrote: > On 2022-07-18 11:38, Ludovic Courtès wrote: > > > Hi, > > > > Andrew Tropin skribis: > > > >> I don't remember all the details and where I stopped, but the highlevel > >> idea is following: > >> > >> - Define a system services, whi

Re: Guix home and operating-system

2022-07-27 Thread Andrew Tropin
On 2022-07-18 11:38, Ludovic Courtès wrote: > Hi, > > Andrew Tropin skribis: > >> I don't remember all the details and where I stopped, but the highlevel >> idea is following: >> >> - Define a system services, which contains (user . home-environment) pairs. >> - Build home environments on system

Re: Guix home and operating-system

2022-07-18 Thread Ludovic Courtès
Hi, Andrew Tropin skribis: > I don't remember all the details and where I stopped, but the highlevel > idea is following: > > - Define a system services, which contains (user . home-environment) pairs. > - Build home environments on system reconfigure. > - Activate home environments on boot. Th

Re: Guix home and operating-system

2022-07-08 Thread Andrew Tropin
On 2022-07-06 11:20, Tissevert wrote: > Hi Guix, > > I'm finally having some time to try and put guix on the older machines at home > and thought I'd start by generating a live CD to show the rest of the family > what that would look like without having to make any irreversible changes yet. > > Me