mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
16 lines
322 B
Nix
16 lines
322 B
Nix
{ ... }:
|
|
{
|
|
config = {
|
|
services = {
|
|
# Enable CUPS to print documents.
|
|
printing.enable = true;
|
|
|
|
avahi = {
|
|
enable = true; # runs the Avahi daemon
|
|
nssmdns4 = true; # enables the mDNS NSS plug-in
|
|
openFirewall = true; # opens the firewall for UDP port 5353
|
|
};
|
|
};
|
|
};
|
|
}
|