
Using #Nix as a package manager on top of a #Guix system is really easy, just a matter of adding '(service nix-service-type)' to the system services and reconfiguring.
This gives us access to Nix-land, e.g.:
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
nix-channel --update
nix-shell --packages cowsay --run "cowsay hello"
A couple more steps if you want to save things in a profile, see:
https://guix.gnu.org/manual/en/html_node/Miscellaneous-Services.html#Nix-service
Handy! E.g. for certain things that are still difficult to package under Guix.