nixos-configs/modules/printer.nix

13 lines
173 B
Nix
Raw Normal View History

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