18 lines
321 B
Nix
18 lines
321 B
Nix
{ pkgs, lib, config, ... }: with lib; let
|
|
cfg = config.module.print;
|
|
in {
|
|
options = {
|
|
module.print.enable = mkEnableOption "Add support for printers.";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.printing = {
|
|
enable = true;
|
|
clientConf = ''
|
|
DigestOptions DenyMD5
|
|
ServerName 192.168.1.2
|
|
'';
|
|
};
|
|
};
|
|
}
|