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-inputs
produces 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-type
to 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-type
to the system configuration. - copy
.xinitrc
to~/.config/sx/sxrc
and make the file executable. - add
sx
to the list of packages - use
sx
, instead ofstartx
, to start the X display server.
For more detailed instructions go here.