add scanner support

This commit is contained in:
2025-11-03 17:17:23 +01:00
parent 0698de4642
commit e3d29fac2c
3 changed files with 14 additions and 1 deletions

12
hardware/scanner.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
hardware.sane = {
enable = true;
openFirewall = true;
extraBackends = [
pkgs.sane-epson2
pkgs.iscan-network-nt
];
};
}