panacea/modules/printing.nix

24 lines
265 B
Nix
Raw Normal View History

2024-11-19 14:18:32 +01:00
{
config,
lib,
pkgs,
...
}:
2020-05-14 03:04:30 +02:00
{
# Enable CUPS
2020-09-29 09:57:30 +02:00
services.printing = {
enable = true;
2024-11-19 14:18:32 +01: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
};
}