nixos/legacy/modules/printer.nix

12 lines
209 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, lib, pkgs, ... }:
{
services.printing.enable = true;
services.printing.drivers = with pkgs; [
2021-03-29 23:25:33 +02:00
canon-cups-ufr2
2020-11-16 21:14:46 +01:00
gutenprint
hplip
];
programs.system-config-printer.enable = true;
}