nix/config/Print.nix

17 lines
316 B
Nix
Raw Normal View History

{ config, lib, ... }:
let
cfg = config.module.print;
in
{
config = lib.mkIf cfg.enable {
services.printing = {
enable = true;
2025-01-15 14:23:08 +03:00
# NOTE: Cups server - Share/Allow remote printing on main page.
clientConf = ''
DigestOptions DenyMD5
2025-01-15 14:23:08 +03:00
ServerName home.local
'';
};
};
}