user consolidation, add printer stuff, etc

This commit is contained in:
k3t
2026-06-15 03:56:05 -06:00
parent 37c285b64f
commit dedfaf4d1a
7 changed files with 102 additions and 26 deletions
+19 -1
View File
@@ -1,3 +1,21 @@
{pkgs, ...}:
{
services.printing.enable = true;
services.printing = {
enable = true;
drivers = with pkgs; [
cups-filters
cups-browsed
cups-bjnp
cups-pdf-to-pdf
gutenprint-bin
canon-cups-ufr2
];
};
hardware.sane = {
enable = true;
extraBackends = [ pkgs.sane-airscan pkgs.sane-pixma ];
};
services.udev.packages = [ pkgs.sane-airscan pkgs.sane-pixma ];
services.ipp-usb.enable=true;
}