nixos-configs/modules/printer.nix

12 lines
172 B
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{pkgs, ...}: {
2023-10-15 17:18:36 -04:00
services = {
2023-11-22 15:33:16 -05:00
# Enable CUPS to print documents.
2023-10-15 17:18:36 -04:00
printing = {
enable = true;
drivers = with pkgs; [
hplip
];
};
};
}