Workaround for scanning

This commit is contained in:
Johannes Rothe 2024-07-05 21:36:38 +02:00
parent b1a97cbc06
commit 2b5a972367

View File

@ -58,6 +58,12 @@
# Enable scanning # Enable scanning
hardware.sane.enable = true; 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; hardware.opengl.enable = true;