NixOS-Config/modules/system/devices/printing/default.nix
2024-10-09 03:36:08 -04:00

20 lines
316 B
Nix

{ pkgs, ... }:
{
services = {
printing = {
enable = true;
drivers = with pkgs; [hplip];
webInterface = false;
};
avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
};
environment.systemPackages = with pkgs; [
system-config-printer
];
}