printing: init module

This commit is contained in:
Nico 2025-06-21 18:33:20 +10:00
parent 83e81deb99
commit 5a56c421a5
2 changed files with 11 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./flatpak.nix
./fonts.nix
./polkit-gtk.nix
./printing.nix
];
# Enable font dir for compatability

View file

@ -0,0 +1,10 @@
{ config, ... }:
{
imports = [
../network/avahi.nix
];
services.printing.enable = true;
services.avahi.openFirewall = true;
}