nix-dotfiles/snippets/scanning.nix

17 lines
354 B
Nix
Raw Normal View History

2026-04-23 17:33:58 -04:00
# for configuration.nix
{ config, lib, pkgs, ... }:
{
hardware.sane = {
enable = true;
2026-08-16 23:28:49 -04:00
brscan4 = {
enable = true;
netDevices = {
home = { model = "HL-L2390DW"; ip = "10.0.0.246"; };
};
};
2026-04-23 17:33:58 -04:00
extraBackends = [ pkgs.sane-airscan pkgs.epkowa ];
};
environment.systemPackages = with pkgs; [ naps2 ];
}