mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
28 lines
385 B
Nix
28 lines
385 B
Nix
{ pkgs, lib, config, options, ... }:
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.personal.services.printing;
|
|
|
|
in
|
|
{
|
|
options = {
|
|
personal = {
|
|
services = {
|
|
printing = {
|
|
enable = mkEnableOption "Printing";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services = {
|
|
printing = {
|
|
enable = true;
|
|
drivers = [ ];
|
|
};
|
|
};
|
|
};
|
|
}
|