fixup! New install

This commit is contained in:
2025-07-20 14:08:02 +03:00
parent 6c7b897c8d
commit 6607b612eb
3 changed files with 14 additions and 7 deletions
+11 -5
View File
@@ -1,9 +1,15 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
lib.mkIf config.services.printing.enable {
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
services = {
printing.drivers = with pkgs; [
brlaser
];
avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
};
}