11 lines
140 B
Nix
11 lines
140 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
services.printing = {
|
||
|
enable = true;
|
||
|
drivers = [
|
||
|
pkgs.foomatic_filters
|
||
|
pkgs.gutenprint
|
||
|
];
|
||
|
};
|
||
|
}
|