flake/common/CUPS.nix

10 lines
267 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
{
# Enable CUPS to print documents.
services.printing.enable = true;
2023-04-15 02:15:31 +02:00
# Enable support for SANE scanners.
2023-04-15 02:35:02 +02:00
# Add "scanner" & "lp" to users `extraGroups` for access to printer & scanner.
2023-04-15 02:15:31 +02:00
hardware.sane.enable = true;
}