about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/user/profpatsch/programs/scanning.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/user/profpatsch/programs/scanning.nix b/modules/user/profpatsch/programs/scanning.nix
index 906cc95a..6571246f 100644
--- a/modules/user/profpatsch/programs/scanning.nix
+++ b/modules/user/profpatsch/programs/scanning.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, lib, ... }:
+{ config, pkgs, unfreeAndNonDistributablePkgs, lib, ... }:
 
 with lib;
 let
@@ -23,6 +23,7 @@ in {
     hardware.sane = {
       enable = true;
       netConf = cfg.remoteScanners;
+      extraBackends = [ unfreeAndNonDistributablePkgs.hplipWithPlugin ];
     };
   };
 }