nix-config/nixos/_mixins/services/cups.nix

11 lines
219 B
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [
./avahi.nix
];
services = {
printing.enable = true;
#printing.drivers = with pkgs; [ gutenprint hplipWithPlugin ];
printing.drivers = with pkgs; [ gutenprint ];
};
}