Category:Desktop environment: Difference between revisions
What is a DE? Added a table for the different DE in NixOS (not yet fully done) |
added additional DE to the table (should be complete now, Phosh/Kodi/Surf-Display may need additional articles) |
||
Line 59: | Line 59: | ||
|lightdm | |lightdm | ||
|pantheon | |pantheon | ||
| | |||
|- | |||
|CDE | |||
|lightdm | |||
|cde | |||
| | |||
|- | |||
|COSMIC | |||
| | |||
| | |||
|see [[COSMIC]] | |||
|- | |||
|LXQT | |||
|lightdm | |||
|lxqt | |||
| | |||
|- | |||
|Lumina | |||
|lightdm | |||
|lumina | |||
| | | | ||
|} | |} | ||
[[Category:Desktop]] | [[Category:Desktop]] |
Revision as of 17:13, 19 June 2024
Linux desktop environments are a GUI for a PC, manage windows, edit settings and have default applications.
Contrary to other Linux distributions it is very easy to install and change desktop environments in NixOS. For the default settings its only needed to use a few lines of code. It will install the desktop environment with all default applications:
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
Changing the desktopManager and selecting a suitable displayManager is required to change the desktop environment (and a reboot). Only some desktop environments require more configuration options than the default environment. Because of the way NixOS works, the system will not become bloated when experimenting with different desktop environments: The default applications of a desktop environment are only available when it is active.
Desktop Environment | displayManager (others may work too) | desktopManager | additionally needed |
---|---|---|---|
Gnome | gdm | gnome | |
KDE/Plasma5 | sddm | plasma5 | |
KDE/Plasma6 | sddm | plasma6 | services.displayManager.sddm.wayland.enable = true; |
Cinnamon | lightdm | cinnamon | |
Mate | lightdm | mate | |
XFCE | lightdm | xfce | |
Budgie | lightdm | budgie | |
Deepin | lightdm | deepin | |
Pantheon | lightdm | pantheon | |
CDE | lightdm | cde | |
COSMIC | see COSMIC | ||
LXQT | lightdm | lxqt | |
Lumina | lightdm | lumina |
Pages in category "Desktop environment"
The following 9 pages are in this category, out of 9 total.