nixos/modules/hardware/printer.nix
2023-06-17 10:24:39 +08:00

9 lines
184 B
Nix

{ pkgs, ... }@inputs:
{
config.services =
{
printing = { enable = true; drivers = [ pkgs.cnijfilter2 ]; };
avahi = { enable = true; nssmdns = true; openFirewall = true; };
};
}