mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #194294 from jraygauthier/jrg/xfce-fix-bg-support-when-no-desktop
nixos/xfce: `bgSupport = !noDesktop`
This commit is contained in:
commit
efcd11b433
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue