Files
nixos/hosts/marauder/printing.nix
2024-09-27 21:35:23 -07:00

17 lines
235 B
Nix
Executable File

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
system-config-printer
];
services.printing = {
enable = true;
};
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
}