nix/modules/printing.nix

18 lines
250 B
Nix

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