nix-config/nixos/fuchsia/services/printing/default.nix
2025-07-06 23:46:38 +08:00

11 lines
219 B
Nix

{...}: {
# Enable CUPS for printing services.
services.printing = {
enable = true;
# Connect to a remote CUPS server.
clientConf = ''
ServerName 192.168.50.249
ServerPort 631
'';
};
}