Printing: Difference between revisions

add setup info for "Brother HL-1212W". info from @realhb in discord
Add instructions for lpadmin group
 
Line 142: Line 142:


The <code>model</code> string is the first column. For example, for the Samsung SCX-4300 series, set <syntaxhighlight inline lang="nix">model = "samsung/SCX-4300.ppd";</syntaxhighlight>.
The <code>model</code> string is the first column. For example, for the Samsung SCX-4300 series, set <syntaxhighlight inline lang="nix">model = "samsung/SCX-4300.ppd";</syntaxhighlight>.
=== Allowing printer administration for users ===
Users in '''wheel''' or '''lpadmin''' group can administer printers. This can be useful to allow non-admin users access to modify printers in their desktop environment settings. To allow user '''snowflake''' to administer printers you would doː<syntaxhighlight lang="nixos">
  users.users.snowflake = {
    isNormalUser = true;
    extraGroups = [
      "lpadmin"   
    ];
    ...
  };
</syntaxhighlight>


=== Printer sharing ===
=== Printer sharing ===