21 lines
291 B
Nix
21 lines
291 B
Nix
{pkgs, ...}:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [ wivrn ];
|
|
|
|
services.avahi = {
|
|
enable = true;
|
|
publish = {
|
|
enable = true;
|
|
userServices = true;
|
|
};
|
|
};
|
|
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ 9757 ];
|
|
allowedUDPPorts = [ 9757 ];
|
|
};
|
|
|
|
# EOF
|
|
}
|