Ricardo Wurmus <ricardo.wur...@mdc-berlin.de> skribis: > Unless you *want* to build *everything* from scratch, be sure to enable > binary substitutes by authorising the build farm hydra.gnu.org with: > > guix import --authorize < /path/to/hydras.public.key
Note that this is the default on GuixSD. >> Since i am living in germany i wanted to use de_DE but this was not >> possible. > > You can most definitely use a different locale, but you will have to > install the glibc-locales package or else applications won't be able to > find the appropriate strings. On GuixSD, installing ‘glibc-locales’ is unnecessary. Instead, the admin should set the ‘locale’ field of the ‘operating-system’ declaration (see <http://www.gnu.org/software/guix/manual/html_node/Locales.html>.) Here, it should be enough to do: (operating-system ;; ... (locale "de_DE.utf8")) HTH, Ludo’.