diff --git a/nixos/fuchsia/services/default.nix b/nixos/fuchsia/services/default.nix index 148168c..4fc5cd0 100644 --- a/nixos/fuchsia/services/default.nix +++ b/nixos/fuchsia/services/default.nix @@ -6,7 +6,6 @@ ./flatpak ./internet-sharing ./libinput - ./printing ./snapper ./ssh ./udev diff --git a/nixos/fuchsia/services/printing/default.nix b/nixos/fuchsia/services/printing/default.nix deleted file mode 100644 index 2878d06..0000000 --- a/nixos/fuchsia/services/printing/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{...}: { - # Enable CUPS for printing services. - services.printing = { - enable = true; - # Connect to a remote CUPS server. - clientConf = '' - ServerName 192.168.50.249 - ServerPort 631 - ''; - }; -}