summaryrefslogtreecommitdiff
path: root/modules/hosts/T495/input-leap.nix
blob: cf6d018b5c93543bd279aa6e8c08bac0e7de6588 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }: {
	environment.systemPackages = with pkgs; [
		input-leap
	];

	networking.firewall = {
		allowedTCPPorts = [
			24800  # input-leaps
		];
	};
}