mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-26 10:48:34 +02:00
refactor: aquamarine - enable tailscale
This commit is contained in:
15
modules/nixos/base/networking/avahi.nix
Normal file
15
modules/nixos/base/networking/avahi.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
# Network discovery on a local network, mDNS
|
||||
# With this enabled, you can access your machine at <hostname>.local
|
||||
# it's more convenient than using the IP address.
|
||||
# https://avahi.org/
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
nssmdns4 = true;
|
||||
publish = {
|
||||
enable = true;
|
||||
domain = true;
|
||||
userServices = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user