From f8d491a7f1dc96b6cabf34bef0e8eaaace2e1328 Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Sat, 28 Jun 2025 14:00:58 +0800 Subject: [PATCH] Exclude some gnome packages from installation. --- configuration.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/configuration.nix b/configuration.nix index c8b7879..6724ef0 100755 --- a/configuration.nix +++ b/configuration.nix @@ -121,6 +121,21 @@ }; }; + # Exclude some default gnome applications. + environment.gnome.excludePackages = (with pkgs; [ + epiphany + gnome-connections + gnome-console + gnome-maps + gnome-music + gnome-tour + totem + yelp + ]); + + # Remove NixOS HTML manual + documentation.doc.enable = false; + # Use ghostty for the "open in terminal" option in file manager. programs.nautilus-open-any-terminal = { enable = true;