From 6e4208291cb859e04692c9e1a9af10e23d446b75 Mon Sep 17 00:00:00 2001 From: osbm Date: Sat, 1 Nov 2025 18:09:12 +0300 Subject: [PATCH] cuda terrorizes nixpkgs community --- modules/home-manager/programs/firefox.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home-manager/programs/firefox.nix b/modules/home-manager/programs/firefox.nix index b2e1e86..6c289d7 100644 --- a/modules/home-manager/programs/firefox.nix +++ b/modules/home-manager/programs/firefox.nix @@ -1,6 +1,7 @@ { lib, nixosConfig ? null, # Receive the NixOS config + pkgs, ... }: { @@ -14,6 +15,10 @@ # Firefox configuration { programs.firefox = { + # TODO Firefox fails as the closure contains a reference to stdenv.cc + # Relax this assertion until the underlying issue is fixed + # https://github.com/NixOS/nixpkgs/pull/457424 + package = pkgs.firefox.overrideAttrs { disallowedRequisites = [ ]; }; languagePacks = [ "ja" "tr"