nixos/modules/desktop/printing/default.nix
2024-07-05 21:05:03 +04:00

27 lines
424 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.printing;
in {
options.modules.desktop.printing = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
# enable printing itself
services.printing.enable = true;
# autodiscovery of printers
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
};
}