cups service: use cups.out everywhere

Seeing as the dev output is the default, we probably want cups.out
everywhere.

+4 -4
+4 -4
nixos/modules/services/printing/cupsd.nix
··· 34 bindir = pkgs.buildEnv { 35 name = "cups-progs"; 36 paths = 37 - [ cups additionalBackends cups_filters pkgs.ghostscript ] 38 ++ optional cfg.gutenprint gutenprint 39 ++ cfg.drivers; 40 pathsToLink = [ "/lib/cups" "/share/cups" "/bin" ]; ··· 267 description = "CUPS printing services"; 268 }; 269 270 - environment.systemPackages = [ cups ] ++ optional polkitEnabled cups-pk-helper; 271 environment.etc."cups".source = "/var/lib/cups"; 272 273 - services.dbus.packages = [ cups ] ++ optional polkitEnabled cups-pk-helper; 274 275 # Cups uses libusb to talk to printers, and does not use the 276 # linux kernel driver. If the driver is not in a black list, it ··· 284 wants = [ "network.target" ]; 285 after = [ "network.target" ]; 286 287 - path = [ cups ]; 288 289 preStart = 290 ''
··· 34 bindir = pkgs.buildEnv { 35 name = "cups-progs"; 36 paths = 37 + [ cups.out additionalBackends cups_filters pkgs.ghostscript ] 38 ++ optional cfg.gutenprint gutenprint 39 ++ cfg.drivers; 40 pathsToLink = [ "/lib/cups" "/share/cups" "/bin" ]; ··· 267 description = "CUPS printing services"; 268 }; 269 270 + environment.systemPackages = [ cups.out ] ++ optional polkitEnabled cups-pk-helper; 271 environment.etc."cups".source = "/var/lib/cups"; 272 273 + services.dbus.packages = [ cups.out ] ++ optional polkitEnabled cups-pk-helper; 274 275 # Cups uses libusb to talk to printers, and does not use the 276 # linux kernel driver. If the driver is not in a black list, it ··· 284 wants = [ "network.target" ]; 285 after = [ "network.target" ]; 286 287 + path = [ cups.out ]; 288 289 preStart = 290 ''