panacea/modules/printing.nix

16 lines
241 B
Nix
Raw Normal View History

2020-05-14 03:04:30 +02:00
{ config, lib, pkgs, ... }:
{
# Enable CUPS
2020-09-29 09:57:30 +02:00
services.printing = {
enable = true;
2023-07-07 12:23:46 +02:00
drivers = with pkgs; [ brgenml1cupswrapper hplip ];
2020-09-29 09:57:30 +02:00
};
2020-05-14 03:04:30 +02:00
# Enable SANE
hardware.sane = {
enable = true;
2022-08-04 15:07:33 +02:00
brscan4.enable = true;
2020-05-14 03:04:30 +02:00
};
}