Category:Desktop environment/en: Difference between revisions
Updating to match new version of source page |
Updating to match new version of source page |
||
Line 1: | Line 1: | ||
<languages/> | <languages/> | ||
Linux desktop environments are graphical user interfaces and sets of tools for a PC. They allow you to manage windows, edit settings, and much more, as well as offering different sets of features and user experiences. | Linux desktop environments are graphical user interfaces and sets of tools for a PC. They allow you to manage windows, edit settings, and much more, as well as offering different sets of features and user experiences. For users interested in more minimal or manual control over their graphical sessions, see the [[:Category:Window managers|Window Managers]] category. | ||
Contrary to most other Linux distributions, it is trivial to install and change desktop environments in NixOS. For example, the use of a fully functional GNOME desktop environment only requires the following lines in your configuration. | Contrary to most other Linux distributions, it is trivial to install and change desktop environments in NixOS. For example, the use of a fully functional GNOME desktop environment only requires the following lines in your configuration. | ||
{{file|/etc/nixos/configuration.nix|nix|<nowiki> | {{file|/etc/nixos/configuration.nix|nix|<nowiki> | ||
services.xserver.enable = true; | |||
services.xserver.displayManager.gdm.enable = true; | # Pre 25.11 | ||
services.xserver.desktopManager.gnome.enable = true; | services.xserver.enable = true; | ||
services.xserver.displayManager.gdm.enable = true; | |||
services.xserver.desktopManager.gnome.enable = true; | |||
# As of 25.11 | |||
services.displayManager.gdm.enable = true; | |||
services.desktopManager.gnome.enable = true; | |||
</nowiki>}} | </nowiki>}} | ||
Line 70: | Line 77: | ||
|- | |- | ||
|COSMIC | |COSMIC | ||
| | |cosmic-greeter | ||
| | |cosmic | ||
|see [[COSMIC]] | |see [[COSMIC]] | ||
|- | |- |