dotfiles/defaults/printing/default.nix
2024-04-10 10:53:41 +07:00

21 lines
289 B
Nix

{
config,
lib,
pkgs,
...
}:
{
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
hplip
splix
cups-googlecloudprint
];
};
services.system-config-printer.enable = true;
programs.system-config-printer.enable = true;
}