GNOME: Difference between revisions
→Excluding some GNOME applications from the default install: Use short form `ic` |
→Excluding some GNOME applications from the default install: - some more Gnome apps added. And exchanged first two paragraphs: Definition should be first. |
||
Line 1: | Line 1: | ||
[[{{PAGENAME}}]] (/(ɡ)noʊm/) is a [[desktop environment]] that aims to be simple and easy to use. It is designed by The GNOME Project and is composed entirely of free and open-source software. GNOME is a part of the GNU Project. | |||
[https://gnome.org/ {{PAGENAME}}] ([[wikipedia:en:{{PAGENAME}}]]) is available as a [[module]] (and also especially as a module for <code>services.xserver.desktopManager</code>). | [https://gnome.org/ {{PAGENAME}}] ([[wikipedia:en:{{PAGENAME}}]]) is available as a [[module]] (and also especially as a module for <code>services.xserver.desktopManager</code>). | ||
== Installation == | == Installation == | ||
Line 18: | Line 20: | ||
Not all applications that come pre-installed with the GNOME desktop environment are desirable for everyone to have on their machines. There's a way to edit {{ic|configuration.nix}} to exclude these kinds of packages, for example as follows: | Not all applications that come pre-installed with the GNOME desktop environment are desirable for everyone to have on their machines. There's a way to edit {{ic|configuration.nix}} to exclude these kinds of packages, for example as follows: | ||
< | <syntaxhighlight lang="nixos"> | ||
environment.gnome.excludePackages = (with pkgs; [ | environment.gnome.excludePackages = (with pkgs; [ | ||
gnome-photos | gnome-photos # photo viewer | ||
gnome-tour | gnome-tour # gnome introduction | ||
gnome.yelp | |||
gnome.gnome-clocks | |||
gnome.gnome-calendar | |||
gnome-console # binary is called kgx | |||
gnome-connections | |||
gnome.gnome-maps | |||
gnome.gnome-weather | |||
gnome.gnome-contacts | |||
gnome.gnome-music | |||
gnome.epiphany | |||
gnome.gnome-characters | |||
gnome-text-editor | |||
]) ++ (with pkgs.gnome; [ | ]) ++ (with pkgs.gnome; [ | ||
cheese # webcam tool | cheese # webcam tool | ||
Line 30: | Line 44: | ||
geary # email reader | geary # email reader | ||
evince # document viewer | evince # document viewer | ||
totem # video player | totem # video player | ||
tali # poker game | tali # poker game | ||
Line 37: | Line 50: | ||
atomix # puzzle game | atomix # puzzle game | ||
]); | ]); | ||
</ | </syntaxhighlight> | ||
== Configuration == | == Configuration == |