From adc82860eb20e9a3652cf434b77ca0ab6aeffce3 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Fri, 22 Aug 2025 20:03:26 +0300 Subject: [PATCH] feat: scanning --- modules/host/printing.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 + ]; }