Updated everything

This commit is contained in:
2025-09-22 09:06:50 -03:00
parent 20c8ecb0bd
commit 438296b01b
51 changed files with 1778 additions and 1090 deletions

View File

@@ -0,0 +1,17 @@
# Enable printing support
{pkgs, ...}: {
# Autodiscovery of network printers
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
services.printing = {
enable = true;
drivers = with pkgs; [
cups-filters
cups-browsed
];
};
}