10 lines
142 B
Nix
10 lines
142 B
Nix
|
|
{ pkgs, ... }: {
|
||
|
|
services.printing = {
|
||
|
|
enable = true;
|
||
|
|
drivers = with pkgs; [
|
||
|
|
epson-escpr
|
||
|
|
me.epson-201112j
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|