nixos/xfce: bgSupport = !noDesktop
The Xfce desktop manager only has background image support when `xfdesktop` is used. Otherwise, we want the possibility to specify a custom background via the `~/.background-image` file.
This commit is contained in:
parent
1042fd8b14
commit
4ae12930f2
@ -145,7 +145,7 @@ in
|
|||||||
services.xserver.desktopManager.session = [{
|
services.xserver.desktopManager.session = [{
|
||||||
name = "xfce";
|
name = "xfce";
|
||||||
desktopNames = [ "XFCE" ];
|
desktopNames = [ "XFCE" ];
|
||||||
bgSupport = true;
|
bgSupport = !cfg.noDesktop;
|
||||||
start = ''
|
start = ''
|
||||||
${pkgs.runtimeShell} ${pkgs.xfce.xfce4-session.xinitrc} &
|
${pkgs.runtimeShell} ${pkgs.xfce.xfce4-session.xinitrc} &
|
||||||
waitPID=$!
|
waitPID=$!
|
||||||
|
Loading…
Reference in New Issue
Block a user