mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-14 02:54:10 -05:00
13 lines
236 B
Nix
13 lines
236 B
Nix
{lib, ...}: {
|
|
services.avahi = lib.mkDefault {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
openFirewall = true;
|
|
publish = {
|
|
enable = true;
|
|
addresses = true;
|
|
domain = true;
|
|
workstation = true;
|
|
};
|
|
};
|
|
}
|