mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
14 lines
218 B
Nix
14 lines
218 B
Nix
![]() |
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
services.avahi = {
|
||
|
enable = true;
|
||
|
nssmdns = true;
|
||
|
publish = {
|
||
|
enable = true;
|
||
|
addresses = true;
|
||
|
workstation = true;
|
||
|
userServices = true;
|
||
|
};
|
||
|
};
|
||
|
}
|