1
0

Update from updated-inputs-2024-11-13-02-03

This commit is contained in:
Flake Update Bot 2024-11-13 03:03:05 +01:00
commit d2ae13ec56
2 changed files with 18 additions and 0 deletions

View File

@ -7,6 +7,7 @@
../../configuration/router ../../configuration/router
./dns.nix ./dns.nix
./mdns.nix
./net-dsl.nix ./net-dsl.nix
./net-gastnetz.nix ./net-gastnetz.nix
./net-heimnetz.nix ./net-heimnetz.nix

17
hosts/carbon/mdns.nix Normal file
View File

@ -0,0 +1,17 @@
{ pkgs, ... }:
{
services.avahi = {
enable = true;
nssmdns4 = true;
allowInterfaces = [
"net-heimnetz"
"net-iot"
];
reflector = true;
};
}