8 lines
132 B
Nix
8 lines
132 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable CUPS to print documents.
|
|
services.printing = {
|
|
enable = true;
|
|
drivers = [ pkgs.epson-escpr2 ];
|
|
};
|
|
} |