From 9c7772fe7479b1b7ce8fd84b04442b76c098069a Mon Sep 17 00:00:00 2001 From: theArctesian Date: Mon, 29 Sep 2025 21:05:08 -0700 Subject: [PATCH] Remove iscan/epkowa dependency to fix ISO build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove epkowa from SANE extraBackends due to broken iscan package - Keep sane-airscan for network scanner support - Resolves ISO build failures from iscan scanner bundle errors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/hardware/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix index 066b2bb..6dfdc8d 100644 --- a/modules/hardware/default.nix +++ b/modules/hardware/default.nix @@ -52,7 +52,8 @@ with lib; enable = true; extraBackends = with pkgs; [ sane-airscan - epkowa + # epkowa removed due to iscan build issues + # Use epsonscan2 or imagescan for Epson scanner support instead ]; };