0
0
Fork 0
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:
Bobby Rong 2024-04-14 14:25:52 +08:00 committed by GitHub
commit efcd11b433
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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=$!