10 lines
131 B
Nix
Executable File
10 lines
131 B
Nix
Executable File
{ config, pkgs, lib, ... }:
|
|
{
|
|
services = {
|
|
printing = {
|
|
enable = true;
|
|
drivers = [ pkgs.brlaser ];
|
|
};
|
|
};
|
|
}
|