gnomeExtensions: remove GNOME 46 extensions from the default set

Fixes #304236
This commit is contained in:
Harsh Shandilya 2024-04-15 17:00:47 +05:30 committed by Maxine Aubrey
parent 91c8415001
commit cde53c12dc
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ in rec {
gnome46Extensions = mapUuidNames (produceExtensionsList "46");
# Keep the last three versions in here
gnomeExtensions = lib.trivial.pipe (gnome44Extensions // gnome45Extensions // gnome46Extensions) [
gnomeExtensions = lib.trivial.pipe (gnome44Extensions // gnome45Extensions) [
(v: builtins.removeAttrs v [ "__attrsFailEvaluation" ])
# Apply some custom patches for automatically packaged extensions
(callPackage ./extensionOverrides.nix {})