From 33d7cc4cbf450b229efff27717b38bca0446ce3a Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Sun, 5 Oct 2025 03:31:28 +0100 Subject: [PATCH] Enable evaluation of packages marked as broken in Nix configuration --- modules/common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/common.nix b/modules/common.nix index d2f6e25..9fe02e4 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -54,6 +54,8 @@ # Allow proprietary software if needed nixpkgs.config = { allowUnfree = true; + # Permit evaluation of packages marked broken (zen-browser currently sets broken = true) + allowBroken = true; }; # Set the minimal stateVersion. When you upgrade, bump per host.