diff --git a/hosts/nixos/thinkpad/system.nix b/hosts/nixos/thinkpad/system.nix index 2d9fef7..c213b40 100644 --- a/hosts/nixos/thinkpad/system.nix +++ b/hosts/nixos/thinkpad/system.nix @@ -174,7 +174,16 @@ }; # Enable CUPS for printing - services.printing.enable = true; + services.printing = { + enable = true; + drivers = with pkgs; [ + cups-filters + gutenprint + ]; + }; + + # Printer management GUI + programs.system-config-printer.enable = true; # Host-specific SSH configuration services.openssh = {