Add printer support

This commit is contained in:
2025-12-01 02:39:50 +01:00
parent 2c36e9738a
commit f63a5ace18
2 changed files with 18 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
./fonts.nix ./fonts.nix
./sddm.nix ./sddm.nix
./hyprland.nix ./hyprland.nix
./printing.nix
./systemd-boot.nix ./systemd-boot.nix
]; ];
} }

View File

@@ -0,0 +1,17 @@
{ pkgs, ... }:
{
services.printing = {
enable = true;
drivers = with pkgs; [
cups-filters
cups-browsed
cnijfilter2
];
};
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
}