Skip to content

Commit

Permalink
Use xfce by default if enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed May 13, 2024
1 parent 6050d4d commit c7873fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion system/nixos/astoria/wm/bspwm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ in {
services.libinput = {
mouse.accelProfile = "flat";
};
services.displayManager.defaultSession = "none+bspwm";
services.displayManager.defaultSession =
if cfg.with-xfce
then "xfce+bspwm"
else "none+bspwm";
};
}

0 comments on commit c7873fd

Please sign in to comment.