mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 04:59:42 +00:00
17 lines
345 B
Nix
17 lines
345 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.
|
|
'';
|
|
};
|
|
};
|
|
}
|