fruitbasket/modules/printing.nix

26 lines
475 B
Nix
Raw Normal View History

2021-11-17 11:39:34 +01:00
{ pkgs, config, ... }:
{
# Enable CUPS to print documents.
2022-03-05 16:14:16 +01:00
services= {
printing.enable = true;
printing.drivers = with pkgs; [
gutenprint
gutenprintBin
hplip
hplipWithPlugin
];
avahi.enable = true;
};
2021-11-17 11:39:34 +01:00
# set up Heiko
2022-03-05 16:14:16 +01:00
#hardware.printers.ensurePrinters = [
2021-11-17 11:39:34 +01:00
# {
# description = "Drucker im FSR Buero";
# deviceUri = "";
# location = "FSR Buero";
# model = "";
# name = "Heiko";
# }
2022-03-05 16:14:16 +01:00
#];
2021-11-17 11:39:34 +01:00
}