Guix Errors
Table of Contents
This is a list problems/errors I encounters when trying Gnu Guix for the first time, some with solutions. Perhaps this is helpful to someone.
1 [X] River
- Problem
riverctl list-inputsproduces an error..- Solution
- install
libinput.
2 [ ] Audio Does Not Work
sof-firmware (from non-guix) does not fix it. No solution found yet.
3 [X] Installing Nerd Fonts
- Manually install:
- download zip from website
- unzip in
~/.local/share/fonts/ttf/mononoki-nerd-font - update cache with
fc-cache.
Using guix:
Or check out channel-b my personal guix channel for the Nerd Font packages.
4 [X] Installing the Nix Package Manager
- add
nix-service-typeto the guix system configuration. - add a channel to nix:
nix-channel --add <channel-url>. update the nix channels,
nix-channel --update. It might be necessary to restart the nix daemon,sudo herd restart nix-daemon.Note: Restarting the daemon is necessary after every boot (for me), not sure why.
- install packages with nix.
5 [X] TTY login with X display server
- add the
xorg-server-service-typeto the system configuration. - copy
.xinitrcto~/.config/sx/sxrcand make the file executable. - add
sxto the list of packages - use
sx, instead ofstartx, to start the X display server.
For more detailed instructions go here.