diff --git a/configuration.nix b/configuration.nix index ad3fd3b..88f8773 100644 --- a/configuration.nix +++ b/configuration.nix @@ -58,6 +58,12 @@ # Enable scanning hardware.sane.enable = true; + # Workaround for https://github.com/NixOS/nixpkgs/issues/273280 + hardware.sane.backends-package = pkgs.sane-backends.overrideAttrs (old: { + configureFlags = (old.configureFlags or []) ++ [ + "--disable-locking" + ]; + }); hardware.opengl.enable = true;