enable sane scanner & hp lipWithPlugin

This commit is contained in:
zonsopkomst 2023-04-14 19:15:31 -05:00
parent 1b00b0b734
commit f2da55a935
2 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,14 @@
{
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable support for SANE scanners.
# Note: Users in the "scanner" group will gain access to the scanner, or the "lp" group if it's also a printer.
hardware.sane.enable = true;
# Enable HP printing drivers
services.printing.drivers = [ pkgs.hplip ];
services.printing.drivers = with pkgs; [
hplip
hplipWithPlugin
];
}

View File

@ -1,7 +0,0 @@
{ config, pkgs, ... }:
{
# Enable support for SANE scanners.
# Note: Users in the "scanner" group will gain access to the scanner, or the "lp" group if it's also a printer.
hardware.sane.enable = true;
}