pkgs-small broke down into functions

This commit is contained in:
2024-11-13 22:15:11 -06:00
parent f9727bb284
commit 5f639e4a6b
2 changed files with 19 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, pkgsC }:
{ pkgs, pkgs-chrome }:
_self: super: {
gnome = super.gnome.overrideScope (
_gFinal: gPrev: {
@@ -44,5 +44,5 @@ _self: super: {
ripgrep = super.ripgrep.override { withPCRE2 = true; };
papirus-icon-theme = super.papirus-icon-theme.override { color = "green"; };
blender = super.blender.override { cudaSupport = true; };
inherit (pkgsC) chromium;
inherit (pkgs-chrome) chromium;
}