nixos-configs/nixosModules/desktop/environment/modules/printer.nix
matt1432 194c140dc1
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: replace 'with' with attrValues
2024-08-31 19:16:06 -04:00

17 lines
258 B
Nix

{pkgs, ...}: {
config = {
services = {
# Enable CUPS to print documents.
printing = {
enable = true;
drivers = [
pkgs.hplip
];
};
};
};
# For accurate stack trace
_file = ./printer.nix;
}