Add printers
This commit is contained in:
parent
90e45b0f33
commit
30be7ded12
3 changed files with 18 additions and 0 deletions
9
hardware/brother/hl3172cdw.nix
Normal file
9
hardware/brother/hl3172cdw.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.printing.enable = true;
|
||||
services.printing.drivers = [
|
||||
pkgs.brlaser
|
||||
];
|
||||
}
|
||||
|
||||
7
hardware/brother/p-touch_p700.nix
Normal file
7
hardware/brother/p-touch_p700.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.udev.extraRules = ''
|
||||
SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="04f9", ATTR{idProduct}=="2061", OWNER="root", GROUP="users", MODE="660"
|
||||
'';
|
||||
}
|
||||
|
|
@ -9,10 +9,12 @@
|
|||
[
|
||||
./hardware-configuration.nix
|
||||
../../hardware/t520.nix
|
||||
../../hardware/brother/hl3172cdw.nix
|
||||
../../sway.nix
|
||||
../../unstable.nix
|
||||
../../fish.nix
|
||||
../../autologin.nix
|
||||
../../hardware/brother/p-touch_p700.nix
|
||||
];
|
||||
|
||||
boot.loader.grub = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue