Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions nixos/modules/services/x11/desktop-managers/enlightenment.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ in
pkgs.xorg.xauth # used by kdesu
pkgs.gtk2 # To get GTK+'s themes.
pkgs.tango-icon-theme

# having these utilities on the path makes the system
# path builder update mime entries
pkgs.shared-mime-info
pkgs.desktop-file-utils

pkgs.gnome2.gnomeicontheme
pkgs.xorg.xcursorthemes
];
Expand Down
5 changes: 5 additions & 0 deletions nixos/modules/services/x11/desktop-managers/plasma5.nix
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,11 @@ in

libsForQt56.phonon-backend-gstreamer
libsForQt5.phonon-backend-gstreamer

# having these utilities on the path makes the system
# path builder update mime entries
shared-mime-info
desktop-file-utils
]

++ lib.optionals cfg.enableQt4Support [ pkgs.phonon-backend-gstreamer ]
Expand Down
2 changes: 2 additions & 0 deletions nixos/modules/services/x11/desktop-managers/xfce.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ in
tango-icon-theme
xfce4-icon-theme

# having these utilities on the path makes the system
# path builder update mime entries
desktop-file-utils
shared-mime-info

Expand Down
5 changes: 4 additions & 1 deletion pkgs/desktops/gnome-3/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ lib.makeScope pkgs.newScope (self: with self; {
maintainers = with pkgs.lib.maintainers; [ lethalman jtojnar ];

corePackages = with gnome3; [
# having these utilities on the path makes the system
# path builder update mime entries
pkgs.desktop-file-utils
pkgs.shared-mime-info # for update-mime-database
pkgs.shared-mime-info

glib # for gsettings
gtk3.out # for gtk-update-icon-cache
glib-networking gvfs dconf gnome-backgrounds gnome-control-center
Expand Down