nixos-config/config/services/cups.nix
2022-05-25 09:37:43 +01:00

20 lines
458 B
Nix

{ pkgs, ... }: {
services.printing = {
enable = true;
drivers = with pkgs; [
brlaser
];
browsing = true;
listenAddresses = [ "*:631" ];
allowFrom = [ "all" ];
defaultShared = true;
};
services.avahi = {
enable = true;
publish.enable = true;
publish.userServices = true;
};
networking.firewall.interfaces.wg0.allowedUDPPorts = [ 631 ];
networking.firewall.interfaces.wg0.allowedTCPPorts = [ 631 ];
}