Hi, Pierre Neidhardt skribis: > * doc/guix.texi (Invoking `guix environment'): Add paragraph and example to > run Eolie in a guix environment container. Add `container' cindex for the > first container example, and the `certificates' cindex for the web browser > example. Good idea! > +@example > +guix environment --container --network --expose=/etc/machine-id \ > + --expose=/etc/ssl/certs/ \ > + --share=$HOME/.local/share/eolie/=$HOME/.local/share/eolie/ \ > + --ad-hoc eolie coreutils nss-certs dbus -- \ > + env DISPLAY=$DISPLAY eolie Instead of ‘env’, you can preserve the ‘DISPLAY’ variable with: guix environment -E ^DISPLAY$ … which in turn allows you to remove ‘coreutils’, maybe. Otherwise LGTM! Thanks, Ludo’.