nix-dotfiles/snippets/scanning.nix

11 lines
209 B
Nix
Raw Permalink Normal View History

2026-04-23 17:33:58 -04:00
# for configuration.nix
{ config, lib, pkgs, ... }:
{
hardware.sane = {
enable = true;
extraBackends = [ pkgs.sane-airscan pkgs.epkowa ];
};
environment.systemPackages = with pkgs; [ naps2 ];
}