mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
25 lines
451 B
Nix
25 lines
451 B
Nix
{
|
|
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.
|
|
'';
|
|
|
|
hplip.enable = mkEnableOption ''
|
|
HP printing support using hplip software.
|
|
'';
|
|
};
|
|
};
|
|
}
|