feat: add driver package for ticket printer

This commit is contained in:
Tim Schubert 2025-07-12 09:56:07 +02:00
parent f23cbdf69c
commit a414e85e51
No known key found for this signature in database
4 changed files with 79 additions and 3 deletions

View file

@ -128,6 +128,7 @@ in
enable = true;
browsing = true;
drivers = with pkgs; [
config.dadada.pkgs.citizen-cups
hplip
brlaser
brgenml1lpr

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ cfg, pkgs, ... }:
{
hardware = {
printers = {
@ -29,7 +29,10 @@
services.printing = {
enable = true;
drivers = [ pkgs.brlaser ];
drivers = [
pkgs.brlaser
pkgs.gutenprint
];
# Remove all state at the start of the service
stateless = true;
listenAddresses = [ "192.168.101.29:631" ];