14 lines
263 B
Nix
14 lines
263 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
mkIf (elem "cups" config.machine.services) {
|
|
services.printing = {
|
|
enable = true;
|
|
startWhenNeeded = true;
|
|
drivers = with pkgs; [gutenprint hplip splix samsung-unified-linux-driver];
|
|
};
|
|
}
|