summaryrefslogtreecommitdiff
path: root/overlays/00-gnome-applications.nix
blob: 8ccc3c2374b300d6e919e59afc011e2f79f34fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
self: super:
{
  gnome-applications = self.buildEnv {
    name = "gnome-applications";
    ignoreCollisions = true;
    paths = with self; [
      gnome3.gnome-autoar
      gnome3.gnome-boxes
      gnome3.gnome-dictionary
      gnome3.evolution-data-server
      gnome3.gnome-shell-extensions
      gnome3.gnome-tweak-tool
      gnome3.gnome-themes-extra
      gnome3.gnome-themes-standard
      gnome3.gucharmap
      gnomeExtensions.sound-output-device-chooser
      gnomeExtensions.gsconnect
    ];
  };
}