From 27e2d79d042039c103e03461522d0361dbbfc802 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Fri, 15 Aug 2025 17:56:19 +1000 Subject: [PATCH] Add brother printer drivers --- hosts/count/configuration.nix | 1 + hosts/modules/brother-printer.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 hosts/modules/brother-printer.nix diff --git a/hosts/count/configuration.nix b/hosts/count/configuration.nix index d8e8b34..9fa4ed6 100644 --- a/hosts/count/configuration.nix +++ b/hosts/count/configuration.nix @@ -10,6 +10,7 @@ ./hardware-configuration.nix ../modules/base.nix ../modules/desktop.nix + ../modules/brother-printer.nix ]; # Bootloader. diff --git a/hosts/modules/brother-printer.nix b/hosts/modules/brother-printer.nix new file mode 100644 index 0000000..e994acd --- /dev/null +++ b/hosts/modules/brother-printer.nix @@ -0,0 +1,5 @@ +{ config, pkgs, inputs, ... }: +{ + services.printing.enable = true; + services.printing.drivers = [ pkgs.brlaser ]; +}