nixos-config/modules/core/printing.nix

12 lines
189 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2025-01-10 20:48:19 +01:00
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
environment.systemPackages = with pkgs; [
hplip
hplipWithPlugin
];
2025-01-10 20:48:19 +01:00
}