mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #70501 from hedning/fix-gnome-session-env-setup
gnome3.gnome-session: always run /etc/set-environment on startup
This commit is contained in:
commit
837cc0767d
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
--- a/gnome-session/gnome-session.in
|
||||
+++ b/gnome-session/gnome-session.in
|
||||
@@ -3,11 +3,11 @@
|
||||
@@ -3,11 +3,13 @@
|
||||
if [ "x$XDG_SESSION_TYPE" = "xwayland" ] &&
|
||||
[ "x$XDG_SESSION_CLASS" != "xgreeter" ] &&
|
||||
[ -n "$SHELL" ] &&
|
||||
|
@ -12,6 +12,8 @@
|
|||
+ ! (echo "$SHELL" | @grep@ -q "nologin"); then
|
||||
if [ "$1" != '-l' ]; then
|
||||
- exec bash -c "exec -l '$SHELL' -c '$0 -l $*'"
|
||||
+ # Make sure the shell actually sets up the environment
|
||||
+ unset __NIXOS_SET_ENVIRONMENT_DONE
|
||||
+ exec @bash@ -c "exec -l '$SHELL' -c '$0 -l $*'"
|
||||
else
|
||||
shift
|
||||
|
|
Loading…
Reference in a new issue