13 lines
173 B
Nix
13 lines
173 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
services = {
|
||
|
# Enable CUPS to print documents.
|
||
|
printing = {
|
||
|
enable = true;
|
||
|
drivers = with pkgs; [
|
||
|
hplip
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|