From e9d9adb73f1a70894f27bb4750fe98089ac87c24 Mon Sep 17 00:00:00 2001 From: Mynacol Date: Sat, 4 Jan 2025 17:29:00 +0000 Subject: [PATCH] nixos/hardware.pcmcia: Fix passthru.function usage passthru.function is not existent, instead use overrideAttrs which has almost the intended functionality. It triggers a rebuild, which _should_ be fine for this package. --- nixos/modules/hardware/pcmcia.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/hardware/pcmcia.nix b/nixos/modules/hardware/pcmcia.nix index 45022f6c124b..9f289b029463 100644 --- a/nixos/modules/hardware/pcmcia.nix +++ b/nixos/modules/hardware/pcmcia.nix @@ -5,7 +5,7 @@ ... }: let - pcmciaUtils = pkgs.pcmciaUtils.passthru.function { + pcmciaUtils = pkgs.pcmciaUtils.overrideAttrs { inherit (config.hardware.pcmcia) firmware config; }; in