mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
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
|
|
}
|