dotfiles/modules/services/printing.nix

29 lines
461 B
Nix
Raw Normal View History

2022-07-15 13:11:54 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.my.services.printing;
in
{
options.my.services.printing = {
enable = mkOption {
default = false;
type = types.bool;
example = true;
};
};
config = lib.mkIf cfg.enable {
services = {
printing = {
enable = true;
2022-07-30 16:37:57 +02:00
drivers = with pkgs; [ epson-escpr2 ];
2022-07-15 13:11:54 +02:00
};
avahi = {
enable = true;
nssmdns = true;
};
};
};
}