fruitbasket/modules/printing.nix
2022-03-05 16:14:16 +01:00

25 lines
475 B
Nix

{ pkgs, config, ... }:
{
# Enable CUPS to print documents.
services= {
printing.enable = true;
printing.drivers = with pkgs; [
gutenprint
gutenprintBin
hplip
hplipWithPlugin
];
avahi.enable = true;
};
# set up Heiko
#hardware.printers.ensurePrinters = [
# {
# description = "Drucker im FSR Buero";
# deviceUri = "";
# location = "FSR Buero";
# model = "";
# name = "Heiko";
# }
#];
}