Hi,
Pierre Neidhardt <mail@ambrevar.xyz> skribis:
Toggle quote (5 lines)
> * 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!
Toggle quote (7 lines)
> +@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’.