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