mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 14:54:26 -05:00
12 lines
306 B
Nix
12 lines
306 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Scanning over the network support
|
|
hardware.sane.enable = true;
|
|
hardware.sane.extraBackends = [ pkgs.sane-airscan ];
|
|
hardware.sane.disabledDefaultBackends = [ "escl" ];
|
|
services.udev.packages = [ pkgs.sane-airscan ];
|
|
services.avahi.enable = true;
|
|
services.avahi.nssmdns = true;
|
|
}
|