nix-conf/modules/printing/default.nix
2023-12-29 16:43:40 +01:00

32 lines
574 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.jopejoe1.printing;
in
{
options.jopejoe1.printing = {
enable = lib.mkEnableOption "Enable Printing";
};
config = lib.mkIf cfg.enable {
services.printing = {
enable = true;
webInterface = true;
drivers = with pkgs; [ hplipWithPlugin ];
};
hardware = {
sane = {
enable = true;
extraBackends = with pkgs; [ sane-airscan hplipWithPlugin ];
};
};
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
};
}