* Use the proper Xfce session start script. Include the desktop and

the panel.

svn path=/nixos/trunk/; revision=23055
This commit is contained in:
Eelco Dolstra 2010-08-09 11:51:44 +00:00
parent fc8204c0e4
commit f6497fa576

View File

@ -28,14 +28,21 @@ in
bgSupport = true; bgSupport = true;
start = start =
'' ''
${pkgs.xfce.xfwm4}/bin/xfwm4 --daemon exec ${pkgs.stdenv.shell} ${pkgs.xfce.xfceutils}/etc/xdg/xfce4/xinitrc
exec ${pkgs.xfce.terminal}/bin/terminal
''; '';
}; };
environment.systemPackages = environment.systemPackages =
[ pkgs.xfce.xfwm4 [
pkgs.which # Needed by the xfce's xinitrc script.
pkgs.xfce.exo
pkgs.xfce.terminal pkgs.xfce.terminal
pkgs.xfce.xfce4panel
pkgs.xfce.xfce4session
pkgs.xfce.xfceutils
pkgs.xfce.xfconf
pkgs.xfce.xfdesktop
pkgs.xfce.xfwm4
]; ];
}; };