up:: nixos jump:: down::


Quick one: If you’re running packer from a NixOS host, make sure you enable the firewall ports.

This did the trick for me.

firewall = {
	enable = true;
	...
	allowedTCPPortRanges = [ 
		{ from = 8000; to = 9000; } # Packer/Dev
	];
};