feat: Update printer settings in default.nix

This commit modifies several settings of the home printer module in default.nix. The PageSize parameter was changed, and several new parameters related to print quality and color correction were added for better print results, specifically for photos.
This commit is contained in:
Harald Hoyer 2024-07-11 16:33:55 +02:00
parent 432c060ce7
commit 0a874834bc

View file

@ -32,7 +32,15 @@ in
deviceUri = "dnssd://Canon%20MG6300%20series._ipp._tcp.local/?uuid=00000000-0000-1000-8000-2C9EFC9C7BA5"; deviceUri = "dnssd://Canon%20MG6300%20series._ipp._tcp.local/?uuid=00000000-0000-1000-8000-2C9EFC9C7BA5";
model = "gutenprint.5.3://bjc-PIXMA-MG6350/expert"; model = "gutenprint.5.3://bjc-PIXMA-MG6350/expert";
ppdOptions = { ppdOptions = {
PageSize = "A4"; PageSize = "w283h425";
# StpFullBleed = "True";
MediaType = "PhotoPlusGloss2";
ColorModel = "CMYK";
StpColorCorrection = "Accurate";
StpColorPrecision = "Best";
StpInkType = "CMYKk";
StpImageType = "Photo";
StpDitherAlgorithm = "Adaptive";
}; };
} }
]; ];