Add (unused) 'printing' module

This commit is contained in:
2025-11-23 16:11:43 +01:00
parent fdd4c13d34
commit f5e31ff825
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
# ];
};
}