Add brother printer drivers

This commit is contained in:
Alexander Wainwright
2025-08-15 17:56:19 +10:00
parent e2a910dc3b
commit 27e2d79d04
2 changed files with 6 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
./hardware-configuration.nix
../modules/base.nix
../modules/desktop.nix
../modules/brother-printer.nix
];
# Bootloader.

View File

@@ -0,0 +1,5 @@
{ config, pkgs, inputs, ... }:
{
services.printing.enable = true;
services.printing.drivers = [ pkgs.brlaser ];
}