about summary refs log tree commit diff
path: root/modules/gnome-cast.nix
blob: b7aaeeac94e4a5a4c0294ecbc3d144dcd93e32d9 (plain)
1
2
3
4
5
6
7
8
9
{ pkgs, ... }:
{
	environment.systemPackages = with pkgs; [
		gnome-network-displays
	];

	networking.firewall.allowedTCPPorts = [ 7236 ];
	networking.firewall.logRefusedConnections = true;
}