Add (unused) 'printing' module

This commit is contained in:
2025-11-23 16:11:43 +01:00
parent 5c163d57b0
commit 1c1e3f9bd4
4 changed files with 14 additions and 5 deletions

View File

@@ -1,5 +1,17 @@
{ ... }:
{ pkgs, ... }:
{
services.printing.enable = true;
# services.avahi = {
# enable = true;
# nssmdns4 = true;
# openFirewall = true;
# };
services.printing = {
enable = true;
# drivers = with pkgs; [
# cups-filters
# cups-browsed
# ];
};
}