cupsd: rename `cupsd.service` to `cups.service`

Changed files
+2 -2
nixos
modules
services
printing
virtualisation
+1 -1
nixos/modules/services/printing/cupsd.nix
···
# gets loaded, and then cups cannot access the printers.
boot.blacklistedKernelModules = [ "usblp" ];
-
systemd.services.cupsd =
{ description = "CUPS Printing Daemon";
wantedBy = [ "multi-user.target" ];
···
# gets loaded, and then cups cannot access the printers.
boot.blacklistedKernelModules = [ "usblp" ];
+
systemd.services.cups =
{ description = "CUPS Printing Daemon";
wantedBy = [ "multi-user.target" ];
+1 -1
nixos/modules/virtualisation/parallels-guest.nix
···
systemd.services.prlshprint = {
description = "Parallels Shared Printer Tool";
wantedBy = [ "multi-user.target" ];
-
bindsTo = [ "cupsd.service" ];
serviceConfig = {
Type = "forking";
ExecStart = "${prl-tools}/bin/prlshprint";
···
systemd.services.prlshprint = {
description = "Parallels Shared Printer Tool";
wantedBy = [ "multi-user.target" ];
+
bindsTo = [ "cups.service" ];
serviceConfig = {
Type = "forking";
ExecStart = "${prl-tools}/bin/prlshprint";