nixos/services/cups.nix

21 lines
307 B
Nix
Raw Normal View History

2023-09-11 20:23:04 +02:00
{
config,
lib,
pkgs,
...
}:
with lib;
mkIf (elem "cups" config.machine.services) {
services.printing = {
enable = true;
browsed.enable = false;
startWhenNeeded = true;
drivers = with pkgs; [
gutenprint
hplip
splix
samsung-unified-linux-driver
];
};
}