From 5d42044c5e5ede239fcae683caa9cd3a6eb17a38 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Fri, 17 Jun 2022 02:36:44 -0300 Subject: [PATCH] fix exposed gtk themes --- overlay/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/default.nix b/overlay/default.nix index 7944bb2b..24cd228f 100644 --- a/overlay/default.nix +++ b/overlay/default.nix @@ -1,6 +1,6 @@ { inputs, ... }: final: prev: let - inherit (inputs.nix-colors.lib { pkgs = final; }) gtkThemeFromScheme; + inherit (inputs.nix-colors.lib-contrib { pkgs = final; }) gtkThemeFromScheme; inherit (inputs.nix-colors) colorSchemes; inherit (builtins) mapAttrs; inherit (final) fetchFromGitHub;