13 lines
223 B
Nix
13 lines
223 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
let
|
||
|
cfg = config.profile.printing;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.printing = {
|
||
|
enable = true;
|
||
|
drivers = [ pkgs.brlaser ]; # Brother Laser Printer
|
||
|
};
|
||
|
};
|
||
|
}
|