From 6a5f4f5954a64bac718e3938f062d045256e7aeb Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sat, 5 Jul 2025 14:18:36 +0300 Subject: [PATCH] Nix: fix overlay application Should fix hyprwm/hyprland-plugins#412 --- flake.nix | 2 -- nix/overlays.nix | 7 ------- 2 files changed, 9 deletions(-) diff --git a/flake.nix b/flake.nix index cc4d87fca..bed15d470 100644 --- a/flake.nix +++ b/flake.nix @@ -91,7 +91,6 @@ overlays = with self.overlays; [ hyprland-packages hyprland-extras - hyprland-debug ]; }); pkgsCrossFor = eachSystem (system: crossSystem: @@ -101,7 +100,6 @@ overlays = with self.overlays; [ hyprland-packages hyprland-extras - hyprland-debug ]; }); pkgsDebugFor = eachSystem (system: diff --git a/nix/overlays.nix b/nix/overlays.nix index 18a524642..d67230d9c 100644 --- a/nix/overlays.nix +++ b/nix/overlays.nix @@ -43,13 +43,6 @@ in { }; hyprland-unwrapped = final.hyprland.override {wrapRuntimeDeps = false;}; - # Build major libs with debug to get as much info as possible in a stacktrace - hyprland-debug = final.hyprland.override { - aquamarine = final.aquamarine.override {debug = true;}; - hyprutils = final.hyprutils.override {debug = true;}; - debug = true; - }; - hyprtester = final.callPackage ./hyprtester.nix { inherit version; };