add(print): added print support

This commit is contained in:
kenji
2026-03-19 16:29:47 -05:00
parent 9f16735547
commit 7d938288ab
2 changed files with 11 additions and 2 deletions
+1
View File
@@ -2,6 +2,7 @@
imports = [
./apps-optional.nix
./backlight.nix
./btop.nix
./boot.nix
./fonts.nix
./hardware.nix
+10 -2
View File
@@ -24,11 +24,19 @@
gnome.gnome-keyring.enable = true;
# Complements printer support
printing.enable = true;
printing = {
enable = true;
drivers = with pkgs; [
gutenprint
cups-filters
hplip
cups-browsed
];
};
avahi = {
enable = true;
nssmdns4 = true;
openFirewall = false;
openFirewall = true;
};
pipewire = {
enable = true;