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