all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Experience using the Nix service as a novice user
@ 2024-02-04 20:02 Christian Miller
  2024-02-06 13:18 ` [bug#68950] [PATCH] doc: Document required setup steps for Nix service Carlo Zancanaro
  2024-02-06 13:22 ` Experience using the Nix service as a novice user Carlo Zancanaro
  0 siblings, 2 replies; 5+ messages in thread
From: Christian Miller @ 2024-02-04 20:02 UTC (permalink / raw)
  To: guix-devel

Hello,

I wanted to try out the Nix service and followed the manual.  I had
some trouble while doing so.  The following are the steps I took, the
errors I encountered, and how I resolved them.  As well as feedback to
the experience.


I added the nix-service-type and nix package itself according to the
Guix manual.

        (use-modules (gnu))
        (use-service-modules nix)
        (use-package-modules package-management)

        (operating-system
          ;; …
          (packages (append (list nix)
                            %base-packages))

          (services (append (list (service nix-service-type))
                            %base-services)))

                            
Those two commands are not provided by the manual.  Instead the manual
just references to the Nix manual.  It would be better to just provide
those two commands, since the Nix manual was not helpful.  This
website[0] was more helpful.
                            

        nix-channel --add https://nixos.org/channels/nixos-23.11 nixos
        nix-channel --update

        
At this point, I started encountering problems.  The command
"nix-channel --update" returns:

        unpacking channels...
        error: opening pseudoterminal master: No such device
        error: program
        '/gnu/store/mh2nc81cvw321q0lx4y38g4n7b86q88y-nix-2.16.1/bin/nix-env'
        failed with exit code 1

        
This was easy to fix because I had found this solution[1]

        sudo herd restart nix-daemon

        
Now I reran "nix-channel --update" and it worked.  After this, I was
going on with the manual which said:
        
        ln -s "/nix/var/nix/profiles/per-user/$USER/profile" ~/.nix-profile
        source /run/current-system/profile/etc/profile.d/nix.sh

        
At this point, I thought I would be done, as I had followed all the
steps in the manual.  Therefore I tried to install a package.

        nix-env --install mpv

        
However, this did not work as I encountered the following error:
        
        error: opening lock file
        '/nix/var/nix/profiles/per-user/cm/profile.lock': No such file or
        directory

        
To resolve this, I executed the following command:
        
        sudo mkdir /nix/var/nix/profiles/per-user/$USER


which resulted in another error because I forgot to set the
permissions:
        
        error: opening lock file
        '/nix/var/nix/profiles/per-user/cm/profile.lock': Permission
        denied

        
Therefore, I also executed the following command:
        
        sudo chown -R $USER:users /nix/var/nix/profiles/per-user/$USER

        
Now I could install the Nix version of mpv with

        nix-env --install mpv


I initially attempted this within a VM ($(guix system vm nix.scm) -m
4096 -smp 2) that had 4 GiB of memory and 2 cores.  The process was
terminated. Is it normal for Nix to require such a large amount of
resources to install a package?  It might be helpful to include this
information in the guide, as I was unsure whether there was a problem
with the installation or if 4 GiB of memory was insufficient.
Therefore, I tried it on my machine, which has 16 GiB of memory, and
it worked.
        
Overall, it feels not very well supported.  As a novice user, I found
the process to be quite challenging. Additionally, I was hoping for a
"working out of the box" experience, which unfortunately was not the
case with the Nix service.

[0] https://nixos.wiki/wiki/Nix_channels
[1] https://issues.guix.gnu.org/63546#7

-- 
Christian Miller


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-02-27 12:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-04 20:02 Experience using the Nix service as a novice user Christian Miller
2024-02-06 13:18 ` [bug#68950] [PATCH] doc: Document required setup steps for Nix service Carlo Zancanaro
2024-02-27 10:24   ` bug#68950: " Ludovic Courtès
2024-02-06 13:22 ` Experience using the Nix service as a novice user Carlo Zancanaro
2024-02-26 19:41   ` Christian Miller

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.