diff --git a/modules/host/printing.nix b/modules/host/printing.nix index 410c6fe..67e9cf6 100644 --- a/modules/host/printing.nix +++ b/modules/host/printing.nix @@ -12,4 +12,14 @@ lib.mkIf config.services.printing.enable { openFirewall = true; }; }; + + hardware.sane = { + enable = true; + extraBackends = with pkgs; [ sane-airscan ]; + }; + + environment.systemPackages = with pkgs; [ + sane-frontends + simple-scan + ]; }