GNOME: Difference between revisions

Normalcea (talk | contribs)
m See also: Explain citation
Normalcea (talk | contribs)
Excluding GNOME Applications: Remove section on excluding GNOME application as it is not clear which applications are necessary and which are not and makes the `Installation` section more confusing to new GNOME users.
Line 36: Line 36:
}
}
</nowiki>}}
</nowiki>}}
=== Excluding GNOME Applications ===
To exclude certain applications that are installed by default with GNOME edit <code>configuration.nix</code> as follows:
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{
  environment.gnome.excludePackages = with pkgs; [
    orca
    evince
    file-roller
    geary
    gnome-disk-utility
    # seahorse
    # sushi
    # sysprof
    #
    # gnome-shell-extensions
    #
    # adwaita-icon-theme
    # nixos-background-info
    gnome-backgrounds
    # gnome-bluetooth
    # gnome-color-manager
    # gnome-control-center
    # gnome-shell-extensions
    gnome-tour # GNOME Shell detects the .desktop file on first log-in.
    gnome-user-docs
    # glib # for gsettings program
    # gnome-menus
    # gtk3.out # for gtk-launch program
    # xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/
    # xdg-user-dirs-gtk # Used to create the default bookmarks
    #
    baobab
    epiphany
    gnome-text-editor
    gnome-calculator
    gnome-calendar
    gnome-characters
    # gnome-clocks
    gnome-console
    gnome-contacts
    gnome-font-viewer
    gnome-logs
    gnome-maps
    gnome-music
    # gnome-system-monitor
    gnome-weather
    # loupe
    # nautilus
    gnome-connections
    simple-scan
    snapshot
    totem
    yelp
    gnome-software
  ];
}
</nowiki>}}
== Configuration ==
== Configuration ==