New install

This commit is contained in:
2025-07-18 16:25:27 +03:00
committed by Sweetbread
parent b27399db29
commit ba0aac7807
6 changed files with 27 additions and 20 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;
};
};
}