GNOME: Difference between revisions
→GNOME extensions: Improve word choice. |
→Tips and tricks: - Minimal - Barebones Gnome DE |
||
| Line 114: | Line 114: | ||
== Tips and tricks == | == Tips and tricks == | ||
=== Barebones / Minimal Gnome Desktop === | |||
This can now be used as a base to build upon with additional apps as required for a Minimal DE.{{File|3={ | |||
# Pre 25.11 | |||
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; | |||
services.gnome = { | |||
core-apps.enable = false; | |||
core-developer-tools.enable = false; | |||
games.enable = false; | |||
}; | |||
environment.systemPackages = with pkgs; [ | |||
gnome-console | |||
]; | |||
environment.gnome.excludePackages = with pkgs; [ | |||
gnome-tour | |||
gnome-user-docs | |||
]; | |||
}|name=/etc/nixos/configuration.nix|lang=nix}} | |||
=== GNOME power user apps === | === GNOME power user apps === | ||
Both GNOME Tweaks (accessible as <code>gnome-tweaks</code>) and [https://gitlab.gnome.org/TheEvilSkeleton/Refine Refine] (accessible as <code>refine</code>) allow you to change certain GNOME settings that are hidden by default (such as interface font, window decoration buttons like maximize/minimize, icon themes and GTK themes, etc). | Both GNOME Tweaks (accessible as <code>gnome-tweaks</code>) and [https://gitlab.gnome.org/TheEvilSkeleton/Refine Refine] (accessible as <code>refine</code>) allow you to change certain GNOME settings that are hidden by default (such as interface font, window decoration buttons like maximize/minimize, icon themes and GTK themes, etc). | ||