zaneyos/config/system/printer.nix
2024-02-08 04:03:29 +01:00

14 lines
245 B
Nix

{ config, lib, ... }:
let inherit (import ../../options.nix) printer; in
lib.mkIf (printer == true) {
services = {
printing.enable = true;
avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
};
}