dotfiles/common/systemModules/printing.nix

14 lines
178 B
Nix
Raw Permalink Normal View History

2024-10-02 17:19:34 -04:00
{ pkgs, ... }: {
services = {
avahi = {
enable = true;
};
printing = {
enable = true;
drivers = with pkgs; [
hplip
];
};
};
}