feat: make printer module

This commit is contained in:
matt1432 2023-10-15 17:18:36 -04:00
parent 7d3dd93746
commit 0ba4655159
2 changed files with 12 additions and 0 deletions

12
modules/printer.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
services = {
# Enable CUPS to print documents.
printing = {
enable = true;
drivers = with pkgs; [
hplip
];
};
};
}