nixos-config/modules/cups.nix

6 lines
133 B
Nix
Raw Permalink Normal View History

2022-06-05 19:57:48 +00:00
{pkgs, ...}:{
2022-06-05 00:16:30 +00:00
# Enable CUPS to print documents.
services.printing.enable = true;
services.printing.drivers = [ pkgs.splix ];
}