nixos-config/system/printing.nix
Christoph Heiss f466b7f36a
system: printing: fix renamed avahi option
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-01-06 18:57:24 +01:00

13 lines
175 B
Nix

{
services.printing = {
enable = true;
startWhenNeeded = true;
cups-pdf.enable = true;
};
services.avahi = {
enable = true;
nssmdns4 = true;
};
}