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 ]; +}