nixos-config/modules/core/printing.nix

11 lines
189 B
Nix

{ pkgs, ... }: {
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
environment.systemPackages = with pkgs; [
hplip
hplipWithPlugin
];
}