From c681926c9252b5db9bd3e5c5e4fc4cc5d0348427 Mon Sep 17 00:00:00 2001 From: Myned Date: Tue, 1 Oct 2024 19:35:47 -0500 Subject: [PATCH] nix: fix incompatible adw-gtk3 version Signed-off-by: Myned --- configuration.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index f378c1d..99e9f5f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -52,11 +52,17 @@ #?? nixpkgs.BRANCH.PACKAGE inherit stable unstable staging-next; + ### Packages + # TODO: Remove when GTK > 4.16 in unstable + # BUG: v5.4 is not compatible with GTK < 4.16 + # https://github.com/lassekongo83/adw-gtk3/releases/tag/v5.4 + adw-gtk3 = stable.adw-gtk3; + # BUG: Build tests often fail on unstable # https://github.com/NixOS/nixpkgs/issues/333946 fprintd = stable.fprintd; - # Hypr* + ### Hypr* hypridle = inputs.hypridle.packages.${prev.system}.default; hyprland = inputs.hyprland.packages.${prev.system}.default; hyprlock = inputs.hyprlock.packages.${prev.system}.default; @@ -65,7 +71,7 @@ hyprbars = inputs.hyprland-plugins.packages.${prev.system}.hyprbars; }; - # Development + ### Development #// ciscoPacketTracer8 = local.ciscoPacketTracer8; } )