2c2d54a4a7
Add printers.nix for Garand‑Desktop, Garand‑Laptop, and default hosts with printer definitions and a printEnable flag. Disable NFS by default in the host variables. Rewrite modules/core/printing.nix to import printer settings, enable services only when printing is enabled, and add more CUPS/Avahi options plus hardware.printers configuration. Add the lpadmin group to the main user. Update the Messenger desktop entry URL to the Facebook Messages page.
15 lines
236 B
Nix
15 lines
236 B
Nix
{
|
|
printEnable = true;
|
|
|
|
ensureDefaultPrinter = "Brother-T525W";
|
|
|
|
ensurePrinters = [
|
|
{
|
|
deviceUri = "ipp://192.168.1.110/ipp";
|
|
location = "home";
|
|
name = "Brother-T525W";
|
|
model = "everywhere";
|
|
}
|
|
];
|
|
}
|