nixdots/options/workstation/default.nix

21 lines
445 B
Nix
Raw Normal View History

2024-04-13 18:10:01 +00:00
{ lib, config, ... }: with lib; let
inherit (lib) mkEnableOption mkOption literalExpression types;
cfg = config.myOptions.workstation;
in
{
options.myOptions.workstation = {
printing = {
enable = mkEnableOption ''
printing support using cups.
Also adds some drivers for common printers.
'';
2024-06-19 17:22:02 +00:00
hplip.enable = mkEnableOption ''
HP printing support using hplip software.
'';
2024-04-13 18:10:01 +00:00
};
};
}