feat(printing): enable common drivers by default

This commit is contained in:
randogoth 2026-02-04 19:24:30 +02:00
parent 4d1b8df2e3
commit e640b43b2f
2 changed files with 19 additions and 4 deletions

View file

@ -1,5 +1,13 @@
{ pkgs, ... }:
{
services.printing.enable = true;
services.printing = {
enable = true;
drivers = [
pkgs.cups-filters
pkgs.cups-browsed
pkgs.gutenprint
pkgs.gutenprintBin
];
};
}