diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-15 23:06:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-15 23:11:29 +0200 |
commit | 4af7c83bc7010b23735c40e074c7d581dad8212e (patch) | |
tree | bbb500f358cbfcc7af48b19f0b02cacd693870d9 /gnu/system.scm | |
parent | 3d2a9c8c8e65ed12e8395e744d3759fa2dd2edb8 (diff) | |
download | guix-4af7c83bc7010b23735c40e074c7d581dad8212e.tar guix-4af7c83bc7010b23735c40e074c7d581dad8212e.tar.gz |
system: Define 'GST_PLUGIN_PATH' in /etc/profile.
* gnu/system.scm (operating-system-etc-service)[profile]: Add
'GST_PLUGIN_PATH' definition.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index b32d26bc8e..aa768824d9 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -474,6 +474,9 @@ export DBUS_FATAL_WARNINGS=0 # Allow Aspell to find dictionaries installed in the user profile. export ASPELL_CONF=\"dict-dir $HOME/.guix-profile/lib/aspell\" +# Allow GStreamer-based applications to find plugins. +export GST_PLUGIN_PATH=\"$HOME/.guix-profile/lib/gstreamer-1.0\" + if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ] then # Load Bash-specific initialization code. |