Install guix package management tool

Today I try to install guix package manager service on my nixos, just doing on my configuration.nix services.guix.enabe = true;. I could see the guix users after the nixos-rebuild switch, but when I type guix install emacs, for exemaple the output is a error

guix install: erro: reading file `/gnu/store/4pkx3vg8wml374ab6fs2w0cgknl5abyg-tar.drv': No such file or directory

The same for guix pull or guix shell commands. I need to do some extra configuration? The guix package on nixpkgs repositpory does not build the complete tool?

The #guix channel on libera.chat give me a answer. After enable de guix service whe can use guix command but maybe we need some reapair on the store, I don’t know why my store was corrupted, to reapair just do it with root privilages

guix gc --verify=contents,repair

And now I can use guix on my NixOS.