GNOME: Difference between revisions

imported>Charlycoste
m (unclosed tag missing)
imported>Jtojnar
(disabling wayland is unnecessary, GDM will fallback to Xorg when needed)
Line 5: Line 5:
=== Install Gnome ===
=== Install Gnome ===


To use Gnome with GDM on Xorg, add this to your configuration.nix:
To use GNOME, add this to your configuration.nix:


<syntaxHighlight>
<syntaxHighlight>
services.xserver.enable = true;
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.displayManager.gdm.wayland = false;
services.xserver.desktopManager.gnome3.enable = true;
services.xserver.desktopManager.gnome3.enable = true;
</syntaxHighlight>
</syntaxHighlight>