nixos/extra/printer.nix
2021-02-28 22:16:36 +01:00

10 lines
189 B
Nix

{ config, lib, pkgs, ... }:
{
services.printing.enable = true;
services.printing.drivers = with pkgs; [
gutenprint
hplip
];
programs.system-config-printer.enable = true;
}