mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
13 lines
211 B
Nix
13 lines
211 B
Nix
{pkgs, ...}: {
|
|
services.avahi = {
|
|
nssmdns4 = true;
|
|
enable = true;
|
|
ipv4 = true;
|
|
ipv6 = true;
|
|
publish = {
|
|
enable = true;
|
|
addresses = true;
|
|
workstation = true;
|
|
};
|
|
};
|
|
}
|