diff --git a/nixos/fuchsia/services/default.nix b/nixos/fuchsia/services/default.nix index 60bac71..6dd97e8 100644 --- a/nixos/fuchsia/services/default.nix +++ b/nixos/fuchsia/services/default.nix @@ -4,6 +4,7 @@ ./flatpak ./libinput ./ollama + ./printing ./udev ./xserver ]; diff --git a/nixos/fuchsia/services/printing/default.nix b/nixos/fuchsia/services/printing/default.nix new file mode 100644 index 0000000..2878d06 --- /dev/null +++ b/nixos/fuchsia/services/printing/default.nix @@ -0,0 +1,11 @@ +{...}: { + # Enable CUPS for printing services. + services.printing = { + enable = true; + # Connect to a remote CUPS server. + clientConf = '' + ServerName 192.168.50.249 + ServerPort 631 + ''; + }; +}