summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-02-21 07:00:49 +0100
committerGitHub <noreply@github.com>2022-02-21 07:00:49 +0100
commitf9e65e44e5d313e8c83957a65928a77630dae26f (patch)
tree7fa6e276bb1c19106040a3ba0ed463e56589236d /nixos/modules/installer
parent2efd5dcd7f377a94f1d0aa72a07086ff83c8d556 (diff)
parente9cade383cbb9bede81e0c633752d761334acfff (diff)
downloadnixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.tar
nixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.tar.gz
nixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.tar.bz2
nixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.tar.lz
nixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.tar.xz
nixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.tar.zst
nixpkgs-f9e65e44e5d313e8c83957a65928a77630dae26f.zip
Merge pull request #160891 from jtojnar/gnome-iso-shortcuts
installation-cd-graphical-gnome: add useful shortcuts to the dash
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix
index 12ad8a4ae00..303493741f3 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix
@@ -10,10 +10,10 @@ with lib;
   isoImage.edition = "gnome";
 
   services.xserver.desktopManager.gnome = {
-    # Add firefox to favorite-apps
+    # Add Firefox and other tools useful for installation to the launcher
     favoriteAppsOverride = ''
       [org.gnome.shell]
-      favorite-apps=[ 'firefox.desktop', 'org.gnome.Geary.desktop', 'org.gnome.Calendar.desktop', 'org.gnome.Music.desktop', 'org.gnome.Photos.desktop', 'org.gnome.Nautilus.desktop' ]
+      favorite-apps=[ 'firefox.desktop', 'nixos-manual.desktop', 'org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'gparted.desktop' ]
     '';
     enable = true;
   };